summaryrefslogtreecommitdiffstats
path: root/lib/bb/msg.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/msg.py')
-rw-r--r--lib/bb/msg.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/bb/msg.py b/lib/bb/msg.py
index 2ba482422..c0b344e32 100644
--- a/lib/bb/msg.py
+++ b/lib/bb/msg.py
@@ -330,14 +330,3 @@ def setLoggingConfig(defaultconfig, userconfigfile=None):
# bb.msg.loggerDefaultLogLevel = newlevel
return conf
-
-def cleanupLogging():
- # Iterate through all the handlers and close them if possible. Fixes
- # 'Unclosed resource' warnings when bitbake exits, see
- # https://bugs.python.org/issue23010
- handlers = set()
- for logger_iter in logging.Logger.manager.loggerDict.keys():
- handlers.update(logging.getLogger(logger_iter).handlers)
-
- for h in handlers:
- h.close()