From 0e95ad49c5189343ff14488bcadb39138c5c92f8 Mon Sep 17 00:00:00 2001 From: anonpenguin23 Date: Wed, 29 Oct 2025 06:54:02 +0200 Subject: [PATCH] Remove debug logging for publish headers in HttpClient to streamline header management and reduce console output. --- src/core/http.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/http.ts b/src/core/http.ts index 6529bde..d153824 100644 --- a/src/core/http.ts +++ b/src/core/http.ts @@ -109,10 +109,6 @@ export class HttpClient { ...options.headers, }; - if (path.startsWith("/v1/pubsub/publish")) { - console.log("publish headers", headers); - } - // Debug: Log headers being sent if ( typeof console !== "undefined" &&