Lower the default verbosity of the non debug console logger from

INFO to ERROR.
This commit is contained in:
Roberto Rosario
2017-02-16 22:10:52 -04:00
parent a9597c81dd
commit 708c7ea776

View File

@@ -148,7 +148,7 @@ class CommonApp(MayanAppConfig):
if settings.DEBUG:
level = 'DEBUG'
else:
level = 'INFO'
level = 'ERROR'
loggers = {}
for project_app in apps.apps.get_app_configs():