From 36ebaa80ca1016d37590112f2e7b9df9f1ed0e37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Schotth=C3=B6fer?= Date: Thu, 28 Jan 2021 20:54:55 +0100 Subject: [PATCH] Enhanced changelog; decreased loglevel --- CHANGELOG.md | 2 +- includes/locationCoordinates.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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")