Skip to content
Snippets Groups Projects
Commit ca3a3156 authored by Markus Scheidgen's avatar Markus Scheidgen
Browse files

Fixed logger name.

parent 614e3190
No related branches found
No related tags found
1 merge request!12Docs
...@@ -418,7 +418,7 @@ def proc_task(task, cls_name, self_id, func_attr): ...@@ -418,7 +418,7 @@ def proc_task(task, cls_name, self_id, func_attr):
might happen in sharded, distributed mongo setups where the object might not might happen in sharded, distributed mongo setups where the object might not
have yet been propagated and therefore apear missing. have yet been propagated and therefore apear missing.
""" """
logger = utils.get_logger('__name__', cls=cls_name, id=self_id, func=func_attr) logger = utils.get_logger(__name__, cls=cls_name, id=self_id, func=func_attr)
# get the process class # get the process class
logger.debug('received process function call') logger.debug('received process function call')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment