diff --git a/CHANGELOG.md b/CHANGELOG.md index dae948b..9bfe776 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### __[v2.5.3]__ - unreleased ##### Added -- GPS-coordinates configuration based on POC message elements. [#510](https://github.com/Schrolli91/BOSWatch/pull/510) +- Functionality to fill coordinate values in POC data structure (lat, lon) based on configured locations that match a regular expression in POC message [#510](https://github.com/Schrolli91/BOSWatch/pull/510) ##### Changed ##### Deprecated ##### Removed diff --git a/includes/locationCoordinates.py b/includes/locationCoordinates.py index ef95ecd..860aa0f 100644 --- a/includes/locationCoordinates.py +++ b/includes/locationCoordinates.py @@ -71,7 +71,7 @@ def findCoordinates(data): data["lat"] = coordinatesList[0] data["lon"] = coordinatesList[1] data["has_geo"] = True - logging.info("Coordinates found!") + logging.debug("Coordinates found!") break except: logging.error("cannot read config file")