From: Scott Gasch Date: Sun, 14 Nov 2021 23:46:39 +0000 (-0800) Subject: Small changes to decorators. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=8f7f3c61e14c903e0b9a151971940b945d306bfd;p=python_utils.git Small changes to decorators. --- diff --git a/decorator_utils.py b/decorator_utils.py index e19759f..4f98a6d 100644 --- a/decorator_utils.py +++ b/decorator_utils.py @@ -47,15 +47,11 @@ def invocation_logged(func: Callable) -> Callable: @functools.wraps(func) def wrapper_invocation_logged(*args, **kwargs): - now = datetime.datetime.now() - ts = now.strftime("%Y/%d/%b:%H:%M:%S%Z") - msg = f"[{ts}]: Entered {func.__name__}" + msg = f"Entered {func.__qualname__}" print(msg) logger.info(msg) ret = func(*args, **kwargs) - now = datetime.datetime.now() - ts = now.strftime("%Y/%d/%b:%H:%M:%S%Z") - msg = f"[{ts}]: Exited {func.__name__}" + msg = f"Exited {func.__qualname__}" print(msg) logger.info(msg) return ret @@ -297,8 +293,8 @@ def thunkify(func): exc[0] = True exc[1] = sys.exc_info() # (type, value, traceback) msg = f"Thunkify has thrown an exception (will be raised on thunk()):\n{traceback.format_exc()}" - logger.warning(msg) print(msg) + logger.warning(msg) finally: wait_event.set()