We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83159d0 commit 4501b61Copy full SHA for 4501b61
src/gossip.rs
@@ -110,9 +110,15 @@ impl GossipSource {
110
Error::GossipUpdateFailed
111
})?;
112
113
- let new_latest_sync_timestamp = gossip_sync
114
- .update_network_graph(&update_data)
115
- .map_err(|_| Error::GossipUpdateFailed)?;
+ let new_latest_sync_timestamp =
+ gossip_sync.update_network_graph(&update_data).map_err(|e| {
+ log_trace!(
116
+ logger,
117
+ "Failed to update network graph with RGS data: {:?}",
118
+ e
119
+ );
120
+ Error::GossipUpdateFailed
121
+ })?;
122
latest_sync_timestamp.store(new_latest_sync_timestamp, Ordering::Release);
123
Ok(new_latest_sync_timestamp)
124
},
0 commit comments