From 420d7ab57b4b587304268274f7e22fa7bedf1b86 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Fri, 18 Jul 2025 15:12:26 -0500 Subject: [PATCH] Remove debug console.log statements for hover handlers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Removed console.log for "Adding hover handlers for RF packet" - Removed console.log for "Marker hover start" - Removed console.log for "Marker hover end" These were debug statements that are no longer needed. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- assets/js/map.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/assets/js/map.ts b/assets/js/map.ts index 4fc4077..b0a06ad 100644 --- a/assets/js/map.ts +++ b/assets/js/map.ts @@ -1246,9 +1246,7 @@ let MapAPRSMap = { // Handle marker hover for RF path visualization // Check for non-empty RF path (not TCPIP and not empty string) if (data.path && data.path.trim() !== "" && !data.path.includes("TCPIP")) { - console.log("Adding hover handlers for RF packet:", data.callsign, "path:", data.path); marker.on("mouseover", () => { - console.log("Marker hover start for:", data.callsign); // Check if LiveView is still connected before sending event if (self.pushEvent && typeof self.pushEvent === 'function' && !self.isDestroyed) { try { @@ -1268,7 +1266,6 @@ let MapAPRSMap = { }); marker.on("mouseout", () => { - console.log("Marker hover end for:", data.callsign); // Check if LiveView is still connected before sending event if (self.pushEvent && typeof self.pushEvent === 'function' && !self.isDestroyed) { try {