Removes the need for the outputLevel in debug

This commit is contained in:
Eric Amodio
2017-05-15 23:16:25 -04:00
parent d35074ecf8
commit f184feda2c

View File

@@ -42,7 +42,7 @@ export class Logger {
}
static log(message?: any, ...params: any[]): void {
if (debug && level !== OutputLevel.Silent) {
if (debug) {
console.log(ConsolePrefix, message, ...params);
}