From 2aa6f8b46583ed7203386f5f6357148d68e871b2 Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Wed, 21 May 2025 17:15:36 -0500 Subject: [PATCH] Log warning --- src/mqtt/MQTT.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/mqtt/MQTT.cpp b/src/mqtt/MQTT.cpp index 6b6517317..7c341e899 100644 --- a/src/mqtt/MQTT.cpp +++ b/src/mqtt/MQTT.cpp @@ -776,6 +776,8 @@ void MQTT::perhapsReportToMap() // Coerce the map position precision to be within the valid range // This removes obtusely large radius and privacy problematic ones from the map if (map_position_precision < 10 || map_position_precision > 16) { + LOG_WARN("MQTT Map report position precision %u is out of range, using default %u", map_position_precision, + default_map_position_precision); map_position_precision = default_map_position_precision; }