Don't create the media folder in the common app if it doesn't exist. Instead disable logfile creation.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-04-29 23:19:12 -04:00
parent a788a99d93
commit 441127ae45

View File

@@ -184,7 +184,9 @@ class CommonApp(MayanAppConfig):
handlers = ['console']
else:
level = 'ERROR'
handlers = ['console', 'logfile']
handlers = ['console']
if os.path.exists(settings.MEDIA_ROOT):
handlers.append('logfile')
loggers = {}
for project_app in apps.apps.get_app_configs():