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 ec66eda commit 95a5e54Copy full SHA for 95a5e54
tokio-console/src/view/styles.rs
@@ -63,7 +63,13 @@ impl Styles {
63
// terminated by remote hosts.
64
ErrorKind::NonRecoverable(_) => true,
65
ErrorKind::Recoverable(_) => false,
66
- });
+ })
67
+ // filter out `color-eyre`'s default set of frames to skip from
68
+ // backtraces.
69
+ //
70
+ // this includes `std::rt`, `color_eyre`'s own frames, and
71
+ // `tokio::runtime` & friends.
72
+ .add_default_filters();
73
74
if self.palette == Palette::NoColors {
75
// disable colors in error reports
0 commit comments