s/parent_context/previous_context/

This commit is contained in:
Erik Johnston 2016-02-10 11:25:19 +00:00
parent 9777c5f49a
commit 00c9ad49df

View File

@ -47,7 +47,7 @@ class LoggingContext(object):
""" """
__slots__ = [ __slots__ = [
"parent_context", "name", "usage_start", "usage_end", "main_thread", "previous_context", "name", "usage_start", "usage_end", "main_thread",
"__dict__", "tag", "alive", "__dict__", "tag", "alive",
] ]
@ -79,7 +79,7 @@ class LoggingContext(object):
sentinel = Sentinel() sentinel = Sentinel()
def __init__(self, name=None): def __init__(self, name=None):
self.parent_context = LoggingContext.current_context() self.previous_context = LoggingContext.current_context()
self.name = name self.name = name
self.ru_stime = 0. self.ru_stime = 0.
self.ru_utime = 0. self.ru_utime = 0.
@ -117,10 +117,10 @@ class LoggingContext(object):
def __enter__(self): def __enter__(self):
"""Enters this logging context into thread local storage""" """Enters this logging context into thread local storage"""
old_context = self.set_current_context(self) old_context = self.set_current_context(self)
if self.parent_context != old_context: if self.previous_context != old_context:
logger.warn( logger.warn(
"Expected parent context %r, found %r", "Expected previous context %r, found %r",
self.parent_context, old_context self.previous_context, old_context
) )
self.alive = True self.alive = True
return self return self
@ -131,7 +131,7 @@ class LoggingContext(object):
Returns: Returns:
None to avoid suppressing any exeptions that were thrown. None to avoid suppressing any exeptions that were thrown.
""" """
current = self.set_current_context(self.parent_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.debug("Expected logging context %s has been lost", self)
@ -141,11 +141,11 @@ class LoggingContext(object):
current, current,
self self
) )
self.parent_context = None self.previous_context = None
self.alive = False self.alive = False
def copy_to(self, record): def copy_to(self, record):
"""Copy fields from this context and its parents to the record""" """Copy fields from this context to the record"""
for key, value in self.__dict__.items(): for key, value in self.__dict__.items():
setattr(record, key, value) setattr(record, key, value)
@ -226,7 +226,7 @@ class PreserveLoggingContext(object):
) )
if self.current_context: if self.current_context:
self.has_parent = self.current_context.parent_context is not None self.has_parent = self.current_context.previous_context is not None
if not self.current_context.alive: if not self.current_context.alive:
logger.debug( logger.debug(
"Entering dead context: %s", "Entering dead context: %s",