Print timeout during request too
[dnsseed-rust] / src / main.rs
index be27835cf6b0df05fbd637b6f713deac21d76572..0e90a32f54360d6e71c1dcca2c11be838ce9122b 100644 (file)
@@ -183,6 +183,9 @@ pub fn scan_node(scan_time: Instant, node: SocketAddr) {
                        let old_state = store.set_node_state(node, state_lock.fail_reason, 0);
                        if old_state != state_lock.fail_reason && state_lock.msg.0 != "" && state_lock.msg.1 {
                                printer.add_line(format!("Updating {} from {} to {}", node, old_state.to_str(), &state_lock.msg.0), state_lock.msg.1);
+                       } else if old_state != state_lock.fail_reason && state_lock.fail_reason == AddressState::TimeoutDuringRequest {
+                               printer.add_line(format!("Updating {} from {} to Timeout During Request (ver: {}, vack: {}, addr: {}, block: {})",
+                                       node, old_state.to_str(), state_lock.recvd_version, state_lock.recvd_verack, state_lock.recvd_addrs, state_lock.recvd_block), true);
                        }
                }
                future::ok(())