You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix panic messages being invisible in tui mode (#2226)
* Fix panic messages being invisible in tui mode
Currently when a panic happens the message gets printed to the alternate screen which gets erased after the terminal is reset to raw mode in the TuiMetricsRenderer drop code.
That leaves users unable to see the panic message (issue #2062).
This commit changes TuiMetricsRenderer to reset the terminal first during a panic and then running the panic handler.
* Use PanicInfo to support Rust version < 1.82
0 commit comments