timezoned: lower log levels

pull/21088/head
Willem Melching 2021-05-31 12:17:52 +02:00
parent a065eb6942
commit 0cd316fb29
1 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ def set_timezone(valid_timezones, timezone):
cloudlog.error(f"Timezone not supported {timezone}")
return
cloudlog.info(f"Setting timezone to {timezone}")
cloudlog.debug(f"Setting timezone to {timezone}")
try:
if TICI:
tzpath = os.path.join("/usr/share/zoneinfo/", timezone)
@ -47,7 +47,7 @@ def main():
# Set based on param
timezone = params.get("Timezone", encoding='utf8')
if timezone is not None:
cloudlog.info("Setting timezone based on param")
cloudlog.debug("Setting timezone based on param")
set_timezone(valid_timezones, timezone)
continue
@ -55,7 +55,7 @@ def main():
# Find timezone based on IP geolocation if no gps location is available
if location is None:
cloudlog.info("Setting timezone based on IP lookup")
cloudlog.debug("Setting timezone based on IP lookup")
try:
r = requests.get("https://ipapi.co/timezone", timeout=10)
if r.status_code == 200:
@ -70,7 +70,7 @@ def main():
# Find timezone by reverse geocoding the last known gps location
else:
cloudlog.info("Setting timezone based on GPS location")
cloudlog.debug("Setting timezone based on GPS location")
try:
location = json.loads(location)
except Exception: