Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix logging #2688

Merged
merged 1 commit into from
Nov 16, 2022
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/plugins/es_objects/es_objects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ void es_objects_plugin_impl::send_bulk_if_ready( bool force )
bool log_by_next = ( docs_sent_total >= next_log_count || fc::time_point::now() >= next_log_time );
if( log_by_next || limit_documents == _options.bulk_replay || force )
{
ilog( "Sending ${n} lines of bulk data to ElasticSearch at block {blk}, "
ilog( "Sending ${n} lines of bulk data to ElasticSearch at block ${blk}, "
"this batch ${b}, total ${t}, approximate size ${s}",
("n",bulk_lines.size())("blk",block_number)
("b",docs_sent_batch)("t",docs_sent_total)("s",approximate_bulk_size) );
Expand Down