From bc4119b3890c6c71ebe951cd915c4d99fdbe2bff Mon Sep 17 00:00:00 2001 From: Emilia Hane Date: Fri, 12 Apr 2024 17:33:05 +0200 Subject: [PATCH] fix(cli): import cmd logs (#7592) --- bin/reth/src/commands/import.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/reth/src/commands/import.rs b/bin/reth/src/commands/import.rs index 032a22dd4..578b1ff8e 100644 --- a/bin/reth/src/commands/import.rs +++ b/bin/reth/src/commands/import.rs @@ -123,7 +123,7 @@ impl ImportCommand { // override the tip let tip = file_client.tip().expect("file client has no tip"); - info!(target: "reth::cli", "Chain file imported"); + info!(target: "reth::cli", "Chain file read"); let (mut pipeline, events) = self .build_import_pipeline( @@ -162,7 +162,7 @@ impl ImportCommand { _ = tokio::signal::ctrl_c() => {}, } - info!(target: "reth::cli", "Finishing up"); + info!(target: "reth::cli", "Chain file imported"); Ok(()) }