Remove erroneously committed test code.

This commit is contained in:
2021-07-23 00:15:32 -05:00
parent c8ed8b61da
commit b2d1b71a52
4 changed files with 2 additions and 7 deletions

View File

@ -9,9 +9,6 @@ export enum LogLevel {
FATAL
}
const kv = 'WARN';
const TEST = LogLevel[kv];
export function parseLogLevel(str: string, defaultLevel = LogLevel.INFO): LogLevel {
if (Object.prototype.hasOwnProperty.call(LogLevel, str)) {
return LogLevel[<any>str] as unknown as LogLevel;