From 835da58b53fe745de68741a548fd45d7695d6c15 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Wed, 17 Nov 2021 11:59:50 +0530 Subject: [PATCH] Remove ! --- src/logging/BaseLogger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging/BaseLogger.ts b/src/logging/BaseLogger.ts index ddf1b308..c9ce6aaf 100644 --- a/src/logging/BaseLogger.ts +++ b/src/logging/BaseLogger.ts @@ -55,7 +55,7 @@ export abstract class BaseLogger { logLevel = LogLevel.Info; } const item = new LogItem(labelOrValues, logLevel, this); - this._run(item, callback, logLevel!, false /* don't throw, nobody is awaiting */, filterCreator); + this._run(item, callback, logLevel, false /* don't throw, nobody is awaiting */, filterCreator); return item; }