Remove unnecessary var.

Previously it was useful because we updated it conditionally but now
it's just reducing information locality.
This commit is contained in:
Feanil Patel
2018-01-31 12:00:30 -05:00
parent 8d84e8b4a2
commit 14b57f14ff

View File

@@ -36,7 +36,6 @@ def get_logger_config(log_dir,
logging_env=logging_env,
hostname=hostname)
handlers = ['console', 'local']
logger_config = {
'version': 1,
'disable_existing_loggers': False,
@@ -87,7 +86,7 @@ def get_logger_config(log_dir,
'propagate': False,
},
'': {
'handlers': handlers,
'handlers': ['console', 'local'],
'level': 'INFO',
'propagate': False
},