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:
@@ -240,16 +240,6 @@ export class QueryBuilder {
|
||||
updatedAt: node.updatedAt ?? Date.now(),
|
||||
});
|
||||
} catch (error) {
|
||||
const { captureException } = require('../sentry');
|
||||
captureException(error, {
|
||||
operation: 'insertNode',
|
||||
nodeId: node.id,
|
||||
nodeKind: node.kind,
|
||||
nodeName: node.name,
|
||||
filePath: node.filePath,
|
||||
language: node.language,
|
||||
startLine: node.startLine,
|
||||
});
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user