[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.
This commit is contained in:
Victor Woeltjen
2015-02-03 17:43:33 -08:00
parent dfba9fd510
commit 7b16428803
3 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1,14 @@
/*global define*/
define(
[],
function () {
"use strict";
function LogLevel() {
}
return LogLevel;
}
);