upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/src/sync
diff options
context:
space:
mode:
Diffstat (limited to 'src/sync')
-rw-r--r--src/sync/relay_connection.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/sync/relay_connection.rs b/src/sync/relay_connection.rs
index b86d298..e57e06c 100644
--- a/src/sync/relay_connection.rs
+++ b/src/sync/relay_connection.rs
@@ -486,11 +486,12 @@ impl RelayConnection {
486 ); 486 );
487 487
488 // Check for any failures 488 // Check for any failures
489 // Note: Timeouts are common for relays without NIP-77 support
489 if !output.failed.is_empty() { 490 if !output.failed.is_empty() {
490 tracing::warn!( 491 tracing::debug!(
491 relay = %self.url, 492 relay = %self.url,
492 failures = ?output.failed, 493 failures = ?output.failed,
493 "Some relays failed during negentropy diff" 494 "Negentropy diff had failures (timeout usually means relay doesn't support NIP-77)"
494 ); 495 );
495 } 496 }
496 497