From 437cddfd516dd8c37474ee471a63878cdad043a9 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Sun, 20 Jul 2025 08:44:06 -0500 Subject: [PATCH] Remove debug logger statements for RF path hover functionality MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed three logger.info statements that were cluttering the logs: - "RF path hover start - path: ..." - "Parsed path stations: ..." - "Found x station positions" These were debug statements that are no longer needed in production. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- lib/aprsme_web/live/map_live/index.ex | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/aprsme_web/live/map_live/index.ex b/lib/aprsme_web/live/map_live/index.ex index 2d3e69d..d5e74e8 100644 --- a/lib/aprsme_web/live/map_live/index.ex +++ b/lib/aprsme_web/live/map_live/index.ex @@ -288,15 +288,11 @@ defmodule AprsmeWeb.MapLive.Index do # Validate path string safe_path = ParamUtils.sanitize_path_string(path) - Logger.info("RF path hover start - path: #{inspect(safe_path)}") - # Parse the path to find digipeater/igate stations path_stations = RfPath.parse_rf_path(safe_path) - Logger.info("Parsed path stations: #{inspect(path_stations)}") # Query for positions of path stations path_station_positions = RfPath.get_path_station_positions(path_stations, socket) - Logger.info("Found #{length(path_station_positions)} station positions") # Send event to draw the RF path lines socket =