Skip to content

Commit

Permalink
Update logger.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Dec 2, 2024
1 parent 9f49953 commit 675586d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions webapp/src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ class Logger {
data || ''
);
}

trace(msg: string, ...args: any[]) {
console.trace(msg, ...args);
}
}

export const logger = Logger.getInstance();

0 comments on commit 675586d

Please sign in to comment.