Skip to content
Snippets Groups Projects
Commit 15099fad authored by Mark Haines's avatar Mark Haines
Browse files

Drop log level for incorrect logging contexts to WARN if the context is wrong...

Drop log level for incorrect logging contexts to WARN if the context is wrong and DEBUG if the context is missing
parent 6fe58996
No related branches found
No related tags found
No related merge requests found
...@@ -55,11 +55,14 @@ class LoggingContext(object): ...@@ -55,11 +55,14 @@ class LoggingContext(object):
None to avoid suppressing any exeptions that were thrown. None to avoid suppressing any exeptions that were thrown.
""" """
if self.thread_local.current_context is not self: if self.thread_local.current_context is not self:
logger.error( if self.thread_local.current_context is self.sentinel:
"Current logging context %s is not the expected context %s", logger.debug("Expected logging context %s has been lost", self)
self.thread_local.current_context, else:
self logger.warn(
) "Current logging context %s is not expected context %s",
self.thread_local.current_context,
self
)
self.thread_local.current_context = self.parent_context self.thread_local.current_context = self.parent_context
self.parent_context = None self.parent_context = None
......
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