Remove Sentry telemetry system from CodeGraph

Eliminates anonymous error reporting functionality that was collecting stack traces and error context via Sentry. Removes all telemetry-related code, configuration options, and documentation references.
This commit is contained in:
Colby McHenry
2026-04-03 09:54:07 -05:00
parent 9bb8e96bd4
commit 8b5622d346
14 changed files with 11 additions and 286 deletions
+1 -6
View File
@@ -233,13 +233,8 @@ export function logWarn(message: string, context?: Record<string, unknown>): voi
}
/**
* Log an error message (also sends to Sentry if initialized)
* Log an error message
*/
export function logError(message: string, context?: Record<string, unknown>): void {
currentLogger.error(message, context);
// Lazy import to avoid circular deps
try {
const { captureMessage } = require('./sentry');
captureMessage(message, context);
} catch {}
}