Skip to content

Commit

Permalink
Fix small test error
Browse files Browse the repository at this point in the history
  • Loading branch information
FinlayDaG33k committed Sep 18, 2024
1 parent e006027 commit 86d40cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ export class Logger {
* @param level {LogLevels}
* @param handler {any}
*/
// @ts-ignore TODO: Figure out how to replace Function with something more sane
// deno-lint-ignore ban-types -- TODO
public static setHandler(level: LogLevels, handler: Function): void {
// @ts-ignore TODO: Figure out how to replace Function with something more sane
// deno-lint-ignore ban-types -- TODO
Logger._handlers[level] = handler;
}

Expand Down

0 comments on commit 86d40cc

Please sign in to comment.