From 3adb2c32545d435769f72d087473a48113df2051 Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Thu, 10 Feb 2022 16:44:40 +0100 Subject: [PATCH] fix ts errors --- src/logging/NullLogger.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logging/NullLogger.ts b/src/logging/NullLogger.ts index 076bb313..21c3d349 100644 --- a/src/logging/NullLogger.ts +++ b/src/logging/NullLogger.ts @@ -67,7 +67,7 @@ export class NullLogItem implements ILogItem { log(): ILogItem { return this; } - set(): void {} + set(): ILogItem { return this; } runDetached(_: LabelOrValues, callback: LogCallback): ILogItem { new Promise(r => r(callback(this))).then(noop, noop);