Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
joeandrews committed Oct 10, 2024
1 parent 410efd4 commit 8d48f5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yarn-project/foundation/src/log/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export type DebugLogger = Logger;
*/


export function createDebugLogger(name: string, taggedLogData?: JSON ): DebugLogger {
export function createDebugLogger(name: string, taggedLogData?: LogData ): DebugLogger {
const debugLogger = debug(name);
if (currentLevel === 'debug') debugLogger.enabled = true;

Expand Down

0 comments on commit 8d48f5f

Please sign in to comment.