Skip to content

Commit

Permalink
Merge pull request #613 from eosnetworkfoundation/add-extract-blocks-…
Browse files Browse the repository at this point in the history
…to-eosio-blocklog-tool

[3.2] Fix typo in log message format string.
  • Loading branch information
jgiszczak authored Jul 6, 2022
2 parents 33aff9e + 4cd6462 commit 8001c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/chain/block_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1196,7 +1196,7 @@ namespace eosio { namespace chain {
dlog("Requested end block of ${end} is greater than the last available block ${n}; adjusting to ${n}", ("end", end)("n", original_block_log.last_block));
end = original_block_log.last_block;
}
ilog("In directory ${ouput} will create new block log with range ${start}-${end}",
ilog("In directory ${output} will create new block log with range ${start}-${end}",
("output", output_dir.generic_string())("start", start)("end", end));
// ****** create the new block log file and write out the header for the file
fc::create_directories(output_dir);
Expand Down

0 comments on commit 8001c3a

Please sign in to comment.