From 382ec6e4f996b3f108fb3fd77e9e00af5871e95e Mon Sep 17 00:00:00 2001 From: ksuprynowicz Date: Sun, 10 Jul 2022 18:22:06 +0200 Subject: [PATCH] Made lock message more verbose --- hifi_singleton.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hifi_singleton.py b/hifi_singleton.py index 70871a9f60..f020378d7d 100644 --- a/hifi_singleton.py +++ b/hifi_singleton.py @@ -46,7 +46,7 @@ class Singleton: self.fh = None # print is horked here so write directly to stdout. with open(1, mode="w", closefd=False) as _stdout: - _stdout.write("Couldn't aquire lock, retrying in 10 seconds\n") + _stdout.write(f"Couldn't aquire lock {self.path}, retrying in 10 seconds\n") _stdout.flush() time.sleep(10) return self