From 4ff81e5452e1e360c606b38460c74e633a623437 Mon Sep 17 00:00:00 2001 From: Omar Abdulla Date: Mon, 14 Jul 2025 17:29:25 +0300 Subject: [PATCH] Remove outdated comment --- crates/node/src/kitchensink.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/node/src/kitchensink.rs b/crates/node/src/kitchensink.rs index 24157a3..1c00f9e 100644 --- a/crates/node/src/kitchensink.rs +++ b/crates/node/src/kitchensink.rs @@ -204,10 +204,6 @@ impl KitchensinkNode { .arg("--node-rpc-url") .arg(format!("ws://127.0.0.1:{substrate_rpc_port}")) .env("RUST_LOG", Self::PROXY_LOG_ENV) - // We pipe both stdout and stderr to the same log file and therefore we're persisting - // both. In the implementation of [`std::fs::File`] the `try_clone` method will ensure - // that both [`std::fs::File`] objects have the same seeks and offsets and therefore we - // don't have to worry about either streams overriding each other. .stdout(stdout_logs_file) .stderr(stderr_logs_file) .spawn()?