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.
1 parent ca5f63e commit bb96cf4Copy full SHA for bb96cf4
codeflash/tracer.py
@@ -116,7 +116,8 @@ def main(args: Namespace | None = None) -> ArgumentParser:
116
with result_pickle_file_path.open(mode="rb") as f:
117
data = pickle.load(f)
118
except Exception:
119
- console.print("Failed to trace")
+ console.info("❌ Failed to trace. Exiting...")
120
+ sys.exit(1)
121
finally:
122
result_pickle_file_path.unlink(missing_ok=True)
123
0 commit comments