diff options
| author | Scott Gasch <[email protected]> | 2022-02-08 17:46:56 -0800 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-02-08 17:46:56 -0800 |
| commit | e8fbbb7306430478dec55d2c963eed116d8330cc (patch) | |
| tree | 28c61b43d11df95b0d70d7f12eba139e02a3942e /thread_utils.py | |
| parent | 0d63d44ac89aab38fe95f36497adaf95110ab949 (diff) | |
More cleanup, yey!
Diffstat (limited to 'thread_utils.py')
| -rw-r--r-- | thread_utils.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/thread_utils.py b/thread_utils.py index 2216127..4db4cf6 100644 --- a/thread_utils.py +++ b/thread_utils.py @@ -1,5 +1,7 @@ #!/usr/bin/env python3 +"""Utilities for dealing with threads + threading.""" + import functools import logging import os @@ -104,7 +106,7 @@ def background_thread( kwargs=kwa, ) thread.start() - logger.debug(f'Started thread {thread.name} tid={thread.ident}') + logger.debug('Started thread "%s" tid=%d', thread.name, thread.ident) return (thread, should_terminate) return inner_wrapper @@ -163,7 +165,7 @@ def periodically_invoke( newargs = (should_terminate, *args) thread = threading.Thread(target=helper_thread, args=newargs, kwargs=kwargs) thread.start() - logger.debug(f'Started thread {thread.name} tid={thread.ident}') + logger.debug('Started thread "%s" tid=%d', thread.name, thread.ident) return (thread, should_terminate) return wrapper_repeat |
