mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-15 11:59:16 +01:00
lightningd: reduce log level for remote address reporting.
It's available in listpeers() if you want to see it, otherwise it's not really something users want to see in the normal course of operation. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
65433de05f
commit
73762de18c
1 changed files with 2 additions and 2 deletions
|
@ -1202,8 +1202,8 @@ void peer_connected(struct lightningd *ld, const u8 *msg)
|
|||
|
||||
/* Log and update remote_addr for Nat/IP discovery. */
|
||||
if (hook_payload->remote_addr) {
|
||||
log_peer_info(ld->log, &id, "Peer says it sees our address as: %s",
|
||||
fmt_wireaddr(tmpctx, hook_payload->remote_addr));
|
||||
log_peer_debug(ld->log, &id, "Peer says it sees our address as: %s",
|
||||
fmt_wireaddr(tmpctx, hook_payload->remote_addr));
|
||||
peer->remote_addr = tal_dup(peer, struct wireaddr,
|
||||
hook_payload->remote_addr);
|
||||
/* Currently only from peers we have a channel with, until we
|
||||
|
|
Loading…
Add table
Reference in a new issue