We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent faa3686 commit 0c8375bCopy full SHA for 0c8375b
lightning/src/onion_message/messenger.rs
@@ -329,7 +329,7 @@ where
329
let sender = match self.node_signer.get_node_id(Recipient::Node) {
330
Ok(node_id) => node_id,
331
Err(_) => {
332
- log_info!(
+ log_warn!(
333
self.logger, "No sender to respond to onion message with path_id {:02x?}",
334
path_id
335
);
@@ -361,7 +361,7 @@ where
361
},
362
};
363
364
- log_info!(self.logger, "Responding to onion message with path_id {:02x?}", path_id);
+ log_trace!(self.logger, "Responding to onion message with path_id {:02x?}", path_id);
365
366
if let Err(e) = self.send_onion_message(path, response, None) {
367
log_info!(
0 commit comments