Skip to content

Commit d0127a5

Browse files
committed
f - more log level changes
1 parent 0c8375b commit d0127a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lightning/src/onion_message/messenger.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ where
342342
let destination = match reply_path {
343343
Some(reply_path) => Destination::BlindedPath(reply_path),
344344
None => {
345-
log_info!(
345+
log_trace!(
346346
self.logger, "No reply path to respond to onion message with path_id {:02x?}",
347347
path_id
348348
);
@@ -353,7 +353,7 @@ where
353353
let path = match self.message_router.find_path(sender, peers, destination) {
354354
Ok(path) => path,
355355
Err(()) => {
356-
log_info!(
356+
log_trace!(
357357
self.logger, "No path to respond to onion message with path_id {:02x?}",
358358
path_id
359359
);
@@ -364,7 +364,7 @@ where
364364
log_trace!(self.logger, "Responding to onion message with path_id {:02x?}", path_id);
365365

366366
if let Err(e) = self.send_onion_message(path, response, None) {
367-
log_info!(
367+
log_trace!(
368368
self.logger, "Failed responding to onion message with path_id {:02x?}: {:?}",
369369
path_id, e
370370
);

0 commit comments

Comments
 (0)