Merge pull request #3007 from matrix-org/rav/warn_on_logcontext_fail
Make 'unexpected logging context' into warningspull/2225/merge
commit
966686c845
|
@ -164,7 +164,7 @@ class LoggingContext(object):
|
||||||
current = self.set_current_context(self.previous_context)
|
current = self.set_current_context(self.previous_context)
|
||||||
if current is not self:
|
if current is not self:
|
||||||
if current is self.sentinel:
|
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:
|
else:
|
||||||
logger.warn(
|
logger.warn(
|
||||||
"Current logging context %s is not expected context %s",
|
"Current logging context %s is not expected context %s",
|
||||||
|
@ -279,7 +279,7 @@ class PreserveLoggingContext(object):
|
||||||
context = LoggingContext.set_current_context(self.current_context)
|
context = LoggingContext.set_current_context(self.current_context)
|
||||||
|
|
||||||
if context != self.new_context:
|
if context != self.new_context:
|
||||||
logger.debug(
|
logger.warn(
|
||||||
"Unexpected logging context: %s is not %s",
|
"Unexpected logging context: %s is not %s",
|
||||||
context, self.new_context,
|
context, self.new_context,
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue