From c5cb872d2c57359c5d51127b71beb504eda8ea56 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 12 May 2024 11:59:55 +0200 Subject: [PATCH] trigger codecov --- unicorn_fy/unicorn_fy.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unicorn_fy/unicorn_fy.py b/unicorn_fy/unicorn_fy.py index d2e464d..5c365fa 100755 --- a/unicorn_fy/unicorn_fy.py +++ b/unicorn_fy/unicorn_fy.py @@ -72,8 +72,8 @@ def __init__(self, debug=False): self.version = __version__ if debug is True: - logger.info(f"New instance of unicorn-fy_{__version__}-{'compiled' if cython.compiled else 'source'} on " - f"{str(platform.system())} {str(platform.release())} started ...") + logger.info(f"New instance of {__app_name__}_{__version__}-{'compiled' if cython.compiled else 'source'} " + f"on {str(platform.system())} {str(platform.release())} started ...") def __enter__(self): logger.debug(f"Entering with-context of UnicornFy() ...")