Skip to content

Commit 5fdf36b

Browse files
committed
fix ci errors with biome
1 parent bc175bb commit 5fdf36b

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

apps/extension/src/utils/logger.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class DevLogger {
3535
private initializeLogger() {
3636
// Only show initialization log when debug mode is enabled
3737
if (this.isDevelopment) {
38-
console.log(`🔧 [Refly Logger] Debug mode: ON ✅`);
38+
console.log('🔧 [Refly Logger] Debug mode: ON ✅');
3939
}
4040
}
4141

@@ -46,12 +46,10 @@ class DevLogger {
4646
if (e.key === 'reflydebug') {
4747
const wasEnabled = this.isDevelopment;
4848
this.isDevelopment = this.checkDevelopmentMode();
49-
49+
5050
// Only log when debug mode is enabled (either before or after change)
5151
if (wasEnabled || this.isDevelopment) {
52-
console.log(
53-
`🔧 [Refly Logger] Debug mode: ${this.isDevelopment ? 'ON ✅' : 'OFF ❌'}`,
54-
);
52+
console.log(`🔧 [Refly Logger] Debug mode: ${this.isDevelopment ? 'ON ✅' : 'OFF ❌'}`);
5553
}
5654
}
5755
});

0 commit comments

Comments
 (0)