Merge pull request #704 from ForeverWintr/master

Fix incorrect dictConfig example
This commit is contained in:
Ian Cordasco
2016-05-10 20:02:20 -05:00
+4 -4
View File
@@ -163,10 +163,10 @@ the configuration dictionary.
'formatter': 'f',
'level': logging.DEBUG}
},
loggers = {
'root': {'handlers': ['h'],
'level': logging.DEBUG}
}
root = {
'handlers': ['h'],
'level': logging.DEBUG,
},
)
dictConfig(logging_config)