Skip to content
This repository was archived by the owner on Feb 14, 2026. It is now read-only.

Commit e2da751

Browse files
committed
chore: remove STABLE MODE debug message from stable mode lol
1 parent d7e9957 commit e2da751

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

src/configuration.ts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,8 @@ class Configuration {
6565
}
6666

6767
// Visual indicator on CLI startup (only if not daemon process to avoid log clutter)
68-
if (!this.isDaemonProcess) {
69-
if (variant === 'dev') {
70-
console.log('\x1b[33m🔧 DEV MODE\x1b[0m - Data: ' + this.happyHomeDir)
71-
} else {
72-
console.log('\x1b[32m✅ STABLE MODE\x1b[0m - Data: ' + this.happyHomeDir)
73-
}
68+
if (!this.isDaemonProcess && variant === 'dev') {
69+
console.log('\x1b[33m🔧 DEV MODE\x1b[0m - Data: ' + this.happyHomeDir)
7470
}
7571

7672
if (!existsSync(this.happyHomeDir)) {

0 commit comments

Comments
 (0)