File tree 1 file changed +3
-3
lines changed
lightning/src/onion_message
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ where
342
342
let destination = match reply_path {
343
343
Some ( reply_path) => Destination :: BlindedPath ( reply_path) ,
344
344
None => {
345
- log_info ! (
345
+ log_trace ! (
346
346
self . logger, "No reply path to respond to onion message with path_id {:02x?}" ,
347
347
path_id
348
348
) ;
@@ -353,7 +353,7 @@ where
353
353
let path = match self . message_router . find_path ( sender, peers, destination) {
354
354
Ok ( path) => path,
355
355
Err ( ( ) ) => {
356
- log_info ! (
356
+ log_trace ! (
357
357
self . logger, "No path to respond to onion message with path_id {:02x?}" ,
358
358
path_id
359
359
) ;
@@ -364,7 +364,7 @@ where
364
364
log_trace ! ( self . logger, "Responding to onion message with path_id {:02x?}" , path_id) ;
365
365
366
366
if let Err ( e) = self . send_onion_message ( path, response, None ) {
367
- log_info ! (
367
+ log_trace ! (
368
368
self . logger, "Failed responding to onion message with path_id {:02x?}: {:?}" ,
369
369
path_id, e
370
370
) ;
You can’t perform that action at this time.
0 commit comments