Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-kothari committed Oct 10, 2024
1 parent 65c7251 commit c044b33
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion yarn-project/foundation/src/log/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ export function createDebugLogger(name: string, fixedLogData?: LogData): DebugLo

const logger = {
silent: () => {},
error: (msg: string, err?: unknown, data?: LogData) => logWithDebug(debugLogger, 'error', fmtErr(msg, err), attatchFixedLogData(data)),
error: (msg: string, err?: unknown, data?: LogData) =>
logWithDebug(debugLogger, 'error', fmtErr(msg, err), attatchFixedLogData(data)),
warn: (msg: string, data?: LogData) => logWithDebug(debugLogger, 'warn', msg, attatchFixedLogData(data)),
info: (msg: string, data?: LogData) => logWithDebug(debugLogger, 'info', msg, attatchFixedLogData(data)),
verbose: (msg: string, data?: LogData) => logWithDebug(debugLogger, 'verbose', msg, attatchFixedLogData(data)),
Expand Down

0 comments on commit c044b33

Please sign in to comment.