diff --git a/crates/cli/runner/src/lib.rs b/crates/cli/runner/src/lib.rs index 5a802d117a..c60ce2eb4e 100644 --- a/crates/cli/runner/src/lib.rs +++ b/crates/cli/runner/src/lib.rs @@ -13,7 +13,7 @@ use reth_tasks::{PanickedTaskError, TaskExecutor}; use std::{future::Future, pin::pin, sync::mpsc, time::Duration}; use tokio::task::JoinHandle; -use tracing::{debug, error, trace}; +use tracing::{debug, error, info}; /// Executes CLI commands. /// @@ -247,10 +247,10 @@ where tokio::select! { _ = ctrl_c => { - trace!(target: "reth::cli", "Received ctrl-c"); + info!(target: "reth::cli", "Received ctrl-c"); }, _ = sigterm => { - trace!(target: "reth::cli", "Received SIGTERM"); + info!(target: "reth::cli", "Received SIGTERM"); }, res = fut => res?, } @@ -263,7 +263,7 @@ where tokio::select! { _ = ctrl_c => { - trace!(target: "reth::cli", "Received ctrl-c"); + info!(target: "reth::cli", "Received ctrl-c"); }, res = fut => res?, }