Remove debug logger statements for RF path hover functionality

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 <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-20 08:44:06 -05:00
parent 15f3e8fcfe
commit 437cddfd51
No known key found for this signature in database

View file

@ -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 =