vibecodingmachine-core 2026.2.20-423 → 2026.2.20-436
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -32,12 +32,7 @@ class UserDatabaseClient {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
this.authToken = null;
|
|
35
|
-
|
|
36
|
-
const chalk = require('chalk');
|
|
37
|
-
console.log(chalk.gray(`UserDatabaseClient: Using API at ${this.apiBaseUrl}`));
|
|
38
|
-
} catch (e) {
|
|
39
|
-
console.log(`UserDatabaseClient: Using API at ${this.apiBaseUrl}`);
|
|
40
|
-
}
|
|
35
|
+
// Removed logging to avoid duplicate messages during CLI startup
|
|
41
36
|
}
|
|
42
37
|
|
|
43
38
|
/**
|
|
@@ -14,7 +14,7 @@ class UserDatabase {
|
|
|
14
14
|
// This is now ALWAYS the client version
|
|
15
15
|
// The API server uses a separate UserDatabase class
|
|
16
16
|
this.apiClient = new UserDatabaseClient()
|
|
17
|
-
|
|
17
|
+
// Removed logging to avoid duplicate messages during CLI startup
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/**
|