Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
waki285 committed Aug 3, 2023
1 parent adfd82b commit 39089b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Logger {
private getMsg(level: LogLevel, message: unknown) {
const infos = `[${this.getDate()}] [${level.toUpperCase()}] ${this.name} -`;
return `${infos} ${
typeof message === "string" ? message : inspect(message, { depth: })
typeof message === "string" ? message : inspect(message, { depth: 10 })
}`;
}
public trace(message: unknown) {
Expand Down

0 comments on commit 39089b9

Please sign in to comment.