Skip to content

Commit e30e4fa

Browse files
committed
GH-1227 Remove tmp debug logging
1 parent 7def374 commit e30e4fa

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

plugins/net_plugin/include/eosio/net_plugin/auto_bp_peering.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ class bp_connection_manager {
132132

133133
// Only called from main thread
134134
void on_pending_schedule(const chain::producer_authority_schedule& schedule) {
135-
fc_dlog(self()->get_logger(), "pending v ${v}, pending_configured_bps: ${a}", ("v", schedule.version)("a", to_string(pending_configured_bps)));
136135
if (auto_bp_peering_enabled() && self()->in_sync()) {
137136
if (schedule.producers.size()) {
138137
if (pending_schedule_version != schedule.version) {
@@ -161,11 +160,8 @@ class bp_connection_manager {
161160

162161
// Only called from main thread
163162
void on_active_schedule(const chain::producer_authority_schedule& schedule) {
164-
fc_dlog(self()->get_logger(), "v ${v}, active_configured_bps: ${a}", ("v", schedule.version)("a", to_string(active_configured_bps)));
165163
if (auto_bp_peering_enabled() && active_schedule_version != schedule.version && self()->in_sync()) {
166164
/// drops any BP connection which is no longer within our scheduling proximity
167-
fc_dlog(self()->get_logger(), "active_configured_bps: ${a}", ("a", to_string(active_configured_bps)));
168-
169165
fc_dlog(self()->get_logger(), "active producer schedule switches from version ${old} to ${new}",
170166
("old", active_schedule_version)("new", schedule.version));
171167

0 commit comments

Comments
 (0)