From f184feda2cd173a5192ecee73f322003a85bde0d Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 15 May 2017 23:16:25 -0400 Subject: [PATCH] Removes the need for the outputLevel in debug --- src/logger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logger.ts b/src/logger.ts index 749f62d..8fc0005 100644 --- a/src/logger.ts +++ b/src/logger.ts @@ -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); }