|
@ -388,12 +388,12 @@ LOGGING = { |
|
|
}, |
|
|
}, |
|
|
'loggers': { |
|
|
'loggers': { |
|
|
'sapl': { |
|
|
'sapl': { |
|
|
'handlers': ['applogfile'] + ['console_verbose'] if LOGGING_CONSOLE_VERBOSE else [], |
|
|
'handlers': ['applogfile'] + (['console_verbose'] if LOGGING_CONSOLE_VERBOSE else []), |
|
|
'level': 'DEBUG' if LOGGING_CONSOLE_VERBOSE else 'INFO', |
|
|
'level': 'DEBUG' if LOGGING_CONSOLE_VERBOSE else 'INFO', |
|
|
'propagate': True, |
|
|
'propagate': True, |
|
|
}, |
|
|
}, |
|
|
'django': { |
|
|
'django': { |
|
|
'handlers': ['applogfile'] + ['console_verbose'] if LOGGING_CONSOLE_VERBOSE else [], |
|
|
'handlers': ['applogfile'] + (['console_verbose'] if LOGGING_CONSOLE_VERBOSE else []), |
|
|
'level': 'ERROR', |
|
|
'level': 'ERROR', |
|
|
'propagate': True, |
|
|
'propagate': True, |
|
|
}, |
|
|
}, |
|
|