Skip to content
Snippets Groups Projects
Commit 14b57f14 authored by Feanil Patel's avatar Feanil Patel
Browse files

Remove unnecessary var.

Previously it was useful because we updated it conditionally but now
it's just reducing information locality.
parent 8d84e8b4
No related branches found
No related tags found
No related merge requests found
......@@ -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
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment