This commit is contained in:
RMidhunSuresh 2021-11-17 11:59:50 +05:30
parent 9c8f96e233
commit 835da58b53

View file

@ -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;
}