Remove debug message.

This commit is contained in:
Dave Page 2015-02-25 17:06:43 +00:00
parent 83cbe87040
commit 0988245ccd

View File

@ -80,8 +80,6 @@ def create_app(app_name=config.APP_NAME):
def get_locale():
"""Get the best language for the user."""
language = request.accept_languages.best_match(config.LANGUAGES.keys())
app.logger.info('Using language: %s', language)
return language
##########################################################################