Skip to content

Commit

Permalink
add missing EOF breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasperhino committed Dec 10, 2024
1 parent 9582e3b commit dbb9d74
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion analytics/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ if (benchmark) logger.info(`Perform benchmarking of operations`);
storeInGitHub(metrics_path, benchmark).catch((e) => {
logger.error(e);
process.exit(1);
});
});
2 changes: 1 addition & 1 deletion analytics/src/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ const logger = pino({
level: process.env.LOG_LEVEL || 'info',
});

export default logger;
export default logger;
2 changes: 1 addition & 1 deletion frontend/src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ const logger = pino({
level: import.meta.env.DEBUG ? 'debug' : 'info',
});

export default logger;
export default logger;

0 comments on commit dbb9d74

Please sign in to comment.