From 48c3fcbc4bdacd3423b5bab424bffed9c3531e45 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Mon, 13 Jan 2025 18:24:08 +0100 Subject: [PATCH] Remove debug logging --- apps/browser/src/background/nativeMessaging.background.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/apps/browser/src/background/nativeMessaging.background.ts b/apps/browser/src/background/nativeMessaging.background.ts index 630e071f64..116d048d2e 100644 --- a/apps/browser/src/background/nativeMessaging.background.ts +++ b/apps/browser/src/background/nativeMessaging.background.ts @@ -281,7 +281,6 @@ export class NativeMessagingBackground { }); message.messageId = messageId; try { - this.logService.info("DEBUG: Sending message of type " + message.command); await this.send(message); } catch (e) { this.logService.info( @@ -375,8 +374,6 @@ export class NativeMessagingBackground { return; } - this.logService.info("DEBUG:recv message", message); - const messageId = message.messageId; if ( @@ -394,7 +391,6 @@ export class NativeMessagingBackground { } if (this.callbacks.has(messageId)) { - this.logService.info("[Native Messaging IPC] Received message with a callback", message); this.callbacks.get(messageId).resolver(message); } else { this.logService.info("[Native Messaging IPC] Received message without a callback", message);