mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 17:08:14 +02:00
Made lock message more verbose
This commit is contained in:
parent
95ebe6bab0
commit
382ec6e4f9
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ class Singleton:
|
||||||
self.fh = None
|
self.fh = None
|
||||||
# print is horked here so write directly to stdout.
|
# print is horked here so write directly to stdout.
|
||||||
with open(1, mode="w", closefd=False) as _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()
|
_stdout.flush()
|
||||||
time.sleep(10)
|
time.sleep(10)
|
||||||
return self
|
return self
|
||||||
|
|
Loading…
Reference in a new issue