From 532974fb90522fa2eeda09ba5a6e37e729389e0d Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 23 Dec 2021 11:54:24 -0500 Subject: [PATCH] Drop leftover print --- tractor/trionics/_mngrs.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tractor/trionics/_mngrs.py b/tractor/trionics/_mngrs.py index 3834983..76f6467 100644 --- a/tractor/trionics/_mngrs.py +++ b/tractor/trionics/_mngrs.py @@ -170,7 +170,6 @@ async def maybe_open_context( await _Cache.lock.acquire() ctx_key = (id(acm_func), key or tuple(kwargs.items())) - print(ctx_key) value = None try: @@ -180,7 +179,7 @@ async def maybe_open_context( value = _Cache.values[ctx_key] except KeyError: - log.info(f'Allocating new resource for {ctx_key}') + log.info(f'Allocating new {acm_func} for {ctx_key}') mngr = acm_func(**kwargs) # TODO: avoid pulling from ``tractor`` internals and