Browse Source

Don't warn when PeriodicUpdate cannot be sent

android
Roman Zeyde 5 years ago
parent
commit
b122496358
No known key found for this signature in database GPG Key ID: 87CAE5FA46917CBB
  1. 2
      src/rpc.rs

2
src/rpc.rs

@ -495,7 +495,7 @@ impl RPC {
Notification::Periodic => { Notification::Periodic => {
for (i, sender) in senders.iter() { for (i, sender) in senders.iter() {
if let Err(e) = sender.try_send(Message::PeriodicUpdate) { if let Err(e) = sender.try_send(Message::PeriodicUpdate) {
warn!("failed to send PeriodicUpdate to peer {}: {}", i, e); debug!("failed to send PeriodicUpdate to peer {}: {}", i, e);
} }
} }
} }

Loading…
Cancel
Save