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 e0243fc commit 752c294Copy full SHA for 752c294
crates/node/src/main.rs
@@ -14,8 +14,11 @@ fn main() {
14
if std::env::var("RUST_LOG").is_err() {
15
std::env::set_var("RUST_LOG", "info");
16
}
17
+
18
// enable tokio-console subscriber
- console_subscriber::init();
19
+ if std::env::var("ENABLE_CONSOLE_SUBSCRIBER").is_ok_and(|v| v == "1") {
20
+ console_subscriber::init();
21
+ }
22
23
reth_cli_util::sigsegv_handler::install();
24
0 commit comments