Remove extra logging in debug mode (#3864)

This commit is contained in:
anj-s
2025-07-11 07:43:51 -07:00
committed by GitHub
parent 166f5eaa66
commit 0151a9e1a3

View File

@@ -87,9 +87,6 @@ export class ClearcutLogger {
}
async flushToClearcut(): Promise<LogResponse> {
if (this.config?.getDebugMode()) {
console.log('Flushing log events to Clearcut.');
}
const eventsToSend = [...this.events];
this.events.length = 0;