Files
openmct/platform/framework/src/LogLevel.js
Victor Woeltjen 7b16428803 [Logging] Add spec for log levels
Add spec for log levels, to allow these to be passed at run-time
in order to suppress logging during normal use. WTD-793.
2015-02-03 17:55:13 -08:00

14 lines
151 B
JavaScript

/*global define*/
define(
[],
function () {
"use strict";
function LogLevel() {
}
return LogLevel;
}
);