fix(types): add level parameter declaration to Logger.log function

This commit is contained in:
ZLundqvist 2022-01-07 14:24:20 +01:00
parent 968fc1c958
commit 0a2e0da5ed

2
types/log4js.d.ts vendored
View File

@ -289,7 +289,7 @@ export class Logger {
readonly category: string;
level: string;
log(...args: any[]): void;
log(level: Level | string , ...args: any[]): void;
isLevelEnabled(level?: string): boolean;