Remove collection of unhandled exception error messages from telemetry (#585)

This commit is contained in:
Dominic White
2026-06-29 19:22:06 -07:00
committed by GitHub
parent 69e82f0258
commit f554523378
3 changed files with 5 additions and 9 deletions
+3 -3
View File
@@ -820,10 +820,10 @@ def main() -> None:
asyncio.run(run_tui(args))
except KeyboardInterrupt:
exit_reason = "interrupted"
except Exception as e:
except Exception:
exit_reason = "error"
posthog.error("unhandled_exception", str(e))
scarf.error("unhandled_exception", str(e))
posthog.error("unhandled_exception")
scarf.error("unhandled_exception")
raise
finally:
report_state = get_global_report_state()