Skip to content

Commit

Permalink
channeld: Splice resume check should log to DEBUG
Browse files Browse the repository at this point in the history
You otherwise get thousands of these zero count Splice resume checks
spamming your logs while most of the time it is only informing you
of "nothing is happening".

Reduces log noise.

Signed-off-by: Warren Togami <[email protected]>
  • Loading branch information
wtogami authored and rustyrussell committed Feb 20, 2024
1 parent cdb0001 commit 897ed22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion channeld/channeld.c
Original file line number Diff line number Diff line change
Expand Up @@ -4980,7 +4980,7 @@ static void peer_reconnect(struct peer *peer,
local_next_funding = (send_tlvs ? send_tlvs->next_funding : NULL);
remote_next_funding = (recv_tlvs ? recv_tlvs->next_funding : NULL);

status_info("Splice resume check with local_next_funding: %s,"
status_debug("Splice resume check with local_next_funding: %s,"
" remote_next_funding: %s, inflights: %zu",
local_next_funding ? "sent" : "omitted",
remote_next_funding ? "received" : "empty",
Expand Down

0 comments on commit 897ed22

Please sign in to comment.