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:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user