Skip to content

Commit

Permalink
fixup: use fully-qualified function name in task runner logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mcous committed Jul 6, 2021
1 parent 845ebb4 commit 0764fed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion robot-server/robot_server/service/task_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def run(self, func: TaskFunc) -> None:
the background. Use functools.partial to add arguments,
if required.
"""
func_name = func.__name__
func_name = func.__qualname__

async def _run_async_task() -> None:
try:
Expand Down

0 comments on commit 0764fed

Please sign in to comment.