Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Change log level of index write #8010

Merged
merged 1 commit into from
Sep 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/chain/block_log.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -836,7 +836,7 @@ namespace eosio { namespace chain {
buffer[_current_position - _start_of_buffer_position] = pos;
--_current_position;
if ((_block_written & 0xfffff) == 0) { //periodically print a progress indicator
dlog("block: ${block_written} position in file: ${pos}", ("block_written", _block_written)("pos",pos));
ilog("block: ${block_written} position in file: ${pos}", ("block_written", _block_written)("pos",pos));
}
--_block_written;
}
Expand Down