logging's atexit hook now runs even if the rest of the module has

already been cleaned up.
This commit is contained in:
Georg Brandl 2006-08-11 07:26:10 +00:00
parent 368c155d05
commit 0a7d1bb168
2 changed files with 5 additions and 2 deletions

View file

@ -1337,14 +1337,14 @@ def disable(level):
"""
root.manager.disable = level
def shutdown():
def shutdown(handlerList=_handlerList):
"""
Perform any cleanup actions in the logging system (e.g. flushing
buffers).
Should be called at application exit.
"""
for h in _handlerList[:]: # was _handlers.keys():
for h in handlerList[:]:
#errors might occur, for example, if files are locked
#we just ignore them if raiseExceptions is not set
try: