fix(cli): import cmd logs (#7592)

This commit is contained in:
Emilia Hane
2024-04-12 17:33:05 +02:00
committed by GitHub
parent d950bce3f5
commit bc4119b389

View File

@ -123,7 +123,7 @@ impl ImportCommand {
// override the tip // override the tip
let tip = file_client.tip().expect("file client has no 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 let (mut pipeline, events) = self
.build_import_pipeline( .build_import_pipeline(
@ -162,7 +162,7 @@ impl ImportCommand {
_ = tokio::signal::ctrl_c() => {}, _ = tokio::signal::ctrl_c() => {},
} }
info!(target: "reth::cli", "Finishing up"); info!(target: "reth::cli", "Chain file imported");
Ok(()) Ok(())
} }