From 4cd646255a69a970679c8f3f892c7a432bbfaca5 Mon Sep 17 00:00:00 2001 From: Jonathan Giszczak Date: Wed, 6 Jul 2022 15:42:39 -0500 Subject: [PATCH] Fix typo in log message format string. --- libraries/chain/block_log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/chain/block_log.cpp b/libraries/chain/block_log.cpp index 046d6002d3..f052906318 100644 --- a/libraries/chain/block_log.cpp +++ b/libraries/chain/block_log.cpp @@ -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);