Skip to content

Commit

Permalink
fixed logger.warn
Browse files Browse the repository at this point in the history
  • Loading branch information
brnaba-aws committed Jul 24, 2024
1 parent a335543 commit c55bf99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class Logger {
}

public warn(message: string, ...params: any[]): void {
this.warn(message, ...params);
Logger.logger.warn(message, ...params);
}

public error(message: string, ...params: any[]): void {
Expand Down

0 comments on commit c55bf99

Please sign in to comment.