Change locale fallback to info logging

This commit is contained in:
Daniel Markstedt 2022-10-14 19:39:32 -07:00
parent 6514e24770
commit aed793001d

View File

@ -150,7 +150,7 @@ def get_locale():
language = session["language"] language = session["language"]
except KeyError: except KeyError:
language = "" language = ""
logging.warning("The default locale could not be detected. Falling back to English.") logging.info("The default locale could not be detected. Falling back to English.")
if language: if language:
return language return language
# Hardcoded fallback to "en" when the user agent does not send an accept-language header # Hardcoded fallback to "en" when the user agent does not send an accept-language header