diff options
| -rw-r--r-- | src/sync/relay_connection.rs | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/src/sync/relay_connection.rs b/src/sync/relay_connection.rs index 5fabd10..f19abb9 100644 --- a/src/sync/relay_connection.rs +++ b/src/sync/relay_connection.rs | |||
| @@ -527,11 +527,19 @@ impl RelayConnection { | |||
| 527 | self.nip77_supported | 527 | self.nip77_supported |
| 528 | .store(2, std::sync::atomic::Ordering::Relaxed); | 528 | .store(2, std::sync::atomic::Ordering::Relaxed); |
| 529 | 529 | ||
| 530 | tracing::debug!( | 530 | // Log warning only once per relay to avoid spam |
| 531 | relay = %self.url, | 531 | if !self |
| 532 | failures = ?output.failed, | 532 | .nip77_warning_logged |
| 533 | "Negentropy diff had failures (timeout usually means relay doesn't support NIP-77)" | 533 | .swap(true, std::sync::atomic::Ordering::Relaxed) |
| 534 | ); | 534 | { |
| 535 | tracing::warn!( | ||
| 536 | relay = %self.url, | ||
| 537 | failures = ?output.failed, | ||
| 538 | "Negentropy diff had failures (timeout usually means relay doesn't support NIP-77), will fall back to REQ+EOSE" | ||
| 539 | ); | ||
| 540 | } | ||
| 541 | |||
| 542 | return Err(format!("Negentropy diff had failures: {:?}", output.failed)); | ||
| 535 | } | 543 | } |
| 536 | 544 | ||
| 537 | Ok(reconciliation) | 545 | Ok(reconciliation) |