settings: Fix double negative in LOGGING_NOT_DISABLED.

Saying "not disabled" just makes it more work to read than it needs to
be -- instead say ENABLED.
This commit is contained in:
Greg Price
2018-03-20 16:53:39 -07:00
committed by Greg Price
parent 73559e5320
commit fe0f1edddb
3 changed files with 6 additions and 5 deletions

View File

@@ -1303,8 +1303,9 @@ if IS_WORKER:
FILE_LOG_PATH = WORKER_LOG_PATH
else:
FILE_LOG_PATH = SERVER_LOG_PATH
# Used for test_logging_handlers
LOGGING_NOT_DISABLED = True
# This is disabled in a few tests.
LOGGING_ENABLED = True
DEFAULT_ZULIP_HANDLERS = (
(['zulip_admins'] if ERROR_REPORTING else []) +