Skip to content

Commit

Permalink
remove unintentional changes from logger
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson committed Nov 28, 2023
1 parent 72a4b68 commit 2da8d06
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ class Logger implements ILogger {
public info(message?: any, ...optionalParams: any[]): void {
this.append(
'INFO ',
`${message} ${
optionalParams ? util.inspect(optionalParams, { depth: Infinity }) : ''
}`
`${message} ${optionalParams ? util.inspect(optionalParams) : ''}`
);
}

Expand Down

0 comments on commit 2da8d06

Please sign in to comment.