Skip to content
This repository was archived by the owner on Nov 1, 2023. It is now read-only.

Commit 689ad1b

Browse files
committed
more logging
1 parent 1301259 commit 689ad1b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/cli/onefuzz/backend.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -635,6 +635,9 @@ def wait(func: Callable[[], Tuple[bool, str, A]], frequency: float = 1.0) -> A:
635635
waited = True
636636
time.sleep(frequency)
637637
frames.sort(key=frames[0].__eq__)
638+
except Exception as err:
639+
print(f"*** error in wait : {err}", flush=True)
640+
raise err
638641
finally:
639642
if waited and isatty:
640643
print(flush=True)

0 commit comments

Comments
 (0)