Include truncated `id(trio.Task)` for task info in log header

runtime_to_msgspec
Tyler Goodlet 2024-05-15 09:36:22 -04:00
parent b23780c102
commit d93135acd8
1 changed files with 16 additions and 2 deletions

View File

@ -202,8 +202,19 @@ class StackLevelAdapter(LoggerAdapter):
)
def pformat_task_uid():
'''
Return `str`-ified unique for a `trio.Task` via a combo of its
`.name: str` and `id()` truncated output.
'''
task: trio.Task = trio.lowlevel.current_task()
tid: str = str(id(task))
return f'{task.name}[{tid[:6]}]'
_conc_name_getters = {
'task': lambda: trio.lowlevel.current_task().name,
'task': pformat_task_uid,
'actor': lambda: current_actor(),
'actor_name': lambda: current_actor().name,
'actor_uid': lambda: current_actor().uid[1][:6],
@ -211,7 +222,10 @@ _conc_name_getters = {
class ActorContextInfo(Mapping):
"Dyanmic lookup for local actor and task names"
'''
Dyanmic lookup for local actor and task names.
'''
_context_keys = (
'task',
'actor',