Skip to content

Commit

Permalink
Merge pull request EOSIO#108 from eosiosg/feature/dpos-pbft-bos-upgrade
Browse files Browse the repository at this point in the history
Add start block debug logging
  • Loading branch information
vlbos committed Jun 28, 2019
2 parents 9354e34 + c62fc2f commit fb9811e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/producer_plugin/producer_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1413,7 +1413,7 @@ producer_plugin_impl::start_block_result producer_plugin_impl::start_block() {
_incoming_trx_weight = 0.0;

if (!_pending_incoming_transactions.empty()) {
fc_dlog(_log, "Processing ${n} pending transactions");
fc_dlog(_log, "Processing ${n} pending transactions", ("n", _pending_incoming_transactions.size()));
while (orig_pending_txn_size && _pending_incoming_transactions.size()) {
if (preprocess_deadline <= fc::time_point::now()) return start_block_result::exhausted;
auto e = _pending_incoming_transactions.front();
Expand Down

0 comments on commit fb9811e

Please sign in to comment.