Skip to content

Commit ef3aded

Browse files
committed
fix formatting
1 parent c0dc232 commit ef3aded

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/nylas-connect/src/utils/logger.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ class NylasConnectLogger implements Logger {
103103
}
104104

105105
private formatMessage(level: LogLevel, ...args: any[]): void {
106-
if (!this.shouldLog(level)) {return;}
106+
if (!this.shouldLog(level)) {
107+
return;
108+
}
107109

108110
const timestamp = new Date().toISOString();
109111
const prefix = `[${timestamp}] [NYLAS-AUTH] [${level.toUpperCase()}]`;

0 commit comments

Comments
 (0)