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

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
chkeita committed Oct 18, 2023
1 parent 1301259 commit 689ad1b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cli/onefuzz/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,9 @@ def wait(func: Callable[[], Tuple[bool, str, A]], frequency: float = 1.0) -> A:
waited = True
time.sleep(frequency)
frames.sort(key=frames[0].__eq__)
except Exception as err:
print(f"*** error in wait : {err}", flush=True)
raise err
finally:
if waited and isatty:
print(flush=True)
Expand Down

0 comments on commit 689ad1b

Please sign in to comment.