From 907cf510a3e9c7f4446070aab4541e69b033a4ce Mon Sep 17 00:00:00 2001 From: Haileyesus Date: Fri, 17 Apr 2026 16:01:16 +0300 Subject: [PATCH] refactor(providers): remove debug logging from Claude authentication status checks --- server/modules/providers/list/claude/claude-auth.provider.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/modules/providers/list/claude/claude-auth.provider.ts b/server/modules/providers/list/claude/claude-auth.provider.ts index 75012b84..1194ae1d 100644 --- a/server/modules/providers/list/claude/claude-auth.provider.ts +++ b/server/modules/providers/list/claude/claude-auth.provider.ts @@ -33,7 +33,6 @@ export class ClaudeProviderAuth implements IProviderAuth { * Returns Claude installation and credential status using Claude Code's auth priority. */ async getStatus(): Promise { - console.log("Checking Claude authentication status...") const installed = this.checkInstalled(); if (!installed) { @@ -49,7 +48,6 @@ export class ClaudeProviderAuth implements IProviderAuth { const credentials = await this.checkCredentials(); - console.log("Credientials status for Claude:", credentials) return { installed, provider: 'claude', @@ -68,7 +66,6 @@ export class ClaudeProviderAuth implements IProviderAuth { const settingsPath = path.join(os.homedir(), '.claude', 'settings.json'); const content = await readFile(settingsPath, 'utf8'); const settings = readObjectRecord(JSON.parse(content)); - console.log("Settings env for Claude:", settings) return readObjectRecord(settings?.env) ?? {}; } catch { return {};