Enhanced changelog; decreased loglevel

This commit is contained in:
Marco Schotthöfer 2021-01-28 20:54:55 +01:00
parent a76e54211f
commit 36ebaa80ca
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -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")