Skip to content

Commit 46d9480

Browse files
committed
f log node announcement application in non-log scenario
1 parent 2a4d569 commit 46d9480

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lightning-rapid-gossip-sync/src/processing.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,9 @@ impl<NG: Deref<Target=NetworkGraph<L>>, L: Deref> RapidGossipSync<NG, L> where L
285285
Err(LightningError { action: ErrorAction::IgnoreAndLog(level), err }) => {
286286
log_given_level!(self.logger, level, "Failed to apply node announcement: {:?}", err);
287287
}
288-
Err(LightningError { action: ErrorAction::IgnoreError, .. }) => {}
288+
Err(LightningError { action: ErrorAction::IgnoreError, err }) => {
289+
log_gossip!(self.logger, "Failed to apply node announcement: {:?}", err);
290+
}
289291
Err(e) => return Err(e.into()),
290292
}
291293
}

0 commit comments

Comments
 (0)