Make 'unexpected logging context' into warnings

I think we've now fixed enough of these that the rest can be logged at
warning.
pull/3007/head
Richard van der Hoff 2018-03-09 13:56:26 +00:00
parent 3959754de3
commit 5a6e54264d
1 changed files with 2 additions and 2 deletions

View File

@ -163,7 +163,7 @@ class LoggingContext(object):
current = self.set_current_context(self.previous_context)
if current is not self:
if current is self.sentinel:
logger.debug("Expected logging context %s has been lost", self)
logger.warn("Expected logging context %s has been lost", self)
else:
logger.warn(
"Current logging context %s is not expected context %s",
@ -278,7 +278,7 @@ class PreserveLoggingContext(object):
context = LoggingContext.set_current_context(self.current_context)
if context != self.new_context:
logger.debug(
logger.warn(
"Unexpected logging context: %s is not %s",
context, self.new_context,
)