Skip to content

Commit f809e8b

Browse files
committed
update log
1 parent 6071c8a commit f809e8b

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

core/src/commands/execute_block.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,16 +126,14 @@ where
126126
.await
127127
.map_err(rpc_err_handler)?;
128128

129-
log::debug!(target: LOG_TARGET, "block_hash response: {:?}", hash_list);
130-
131129
if let ListOrValue::List(hashes) = hash_list {
132130
for (block_number, hash) in (from..=to).zip(hashes) {
133131
let Some(hash) = hash else {
134132
log::warn!(target: LOG_TARGET, "skipping block {block_number}, hash was None");
135133
continue;
136134
};
137135

138-
log::debug!(target: LOG_TARGET, "hash found, block number: {block_number}, hash: {hash}");
136+
log::info!(target: LOG_TARGET, "hash found, block number: {block_number}, hash: {hash}");
139137

140138
let header = ChainApi::<(), Block::Hash, Block::Header, SignedBlock<Block>>::header(
141139
&rpc,

0 commit comments

Comments
 (0)