diff options
Diffstat (limited to 'log/logger_test.ts')
-rw-r--r-- | log/logger_test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log/logger_test.ts b/log/logger_test.ts index a2275a00b..8ff328c48 100644 --- a/log/logger_test.ts +++ b/log/logger_test.ts @@ -53,7 +53,7 @@ test(function customHandler() { test(function logFunctions() { let handler: TestHandler; - const doLog = (level: string) => { + const doLog = (level: string): void => { handler = new TestHandler(level); let logger = new Logger(level, [handler]); logger.debug("foo"); |