We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9a3121e + 04fd297 commit 03b3b12Copy full SHA for 03b3b12
mbed_lstools/lstools_base.py
@@ -37,7 +37,7 @@ def wrapper(self, *args):
37
lock = InterProcessLock(self.lock_file)
38
acquired = lock.acquire(blocking=False)
39
if not acquired:
40
- self.debug("Waiting %d seconds for mock file lock." % timeout)
+ self.debug("timed_mbedls_lock", "Waiting %d seconds for mock file lock." % timeout)
41
acquired = lock.acquire(blocking=True, timeout=timeout)
42
if acquired:
43
try:
@@ -47,7 +47,7 @@ def wrapper(self, *args):
47
raise e
48
lock.release()
49
else:
50
- self.err("Failed to acquired mock file lock in %d seconds!" % timeout)
+ self.err("timed_mbedls_lock", "Failed to acquired mock file lock in %d seconds!" % timeout)
51
sys.exit(1)
52
return ret
53
0 commit comments