Skip to content
This repository was archived by the owner on Apr 17, 2020. It is now read-only.

Commit 0b0ad4c

Browse files
darosiorrustyrussell
authored andcommittedSep 10, 2019
transition from status_trace() to status_debug
1 parent 0504a51 commit 0b0ad4c

27 files changed

+210
-213
lines changed
 

‎channeld/channeld.c

+37-37
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ static void send_announcement_signatures(struct peer *peer)
344344
const u8 *msg, *ca, *req;
345345
struct pubkey mykey;
346346

347-
status_trace("Exchanging announcement signatures.");
347+
status_debug("Exchanging announcement signatures.");
348348
ca = create_channel_announcement(tmpctx, peer);
349349
req = towire_hsm_cannouncement_sig_req(tmpctx, ca);
350350

@@ -677,7 +677,7 @@ static void handle_peer_feechange(struct peer *peer, const u8 *msg)
677677
&peer->channel_id,
678678
"update_fee from non-funder?");
679679

680-
status_trace("update_fee %u, range %u-%u",
680+
status_debug("update_fee %u, range %u-%u",
681681
feerate, peer->feerate_min, peer->feerate_max);
682682

683683
/* BOLT #2:
@@ -706,7 +706,7 @@ static void handle_peer_feechange(struct peer *peer, const u8 *msg)
706706
"update_fee %u unaffordable",
707707
feerate);
708708

709-
status_trace("peer updated fee to %u", feerate);
709+
status_debug("peer updated fee to %u", feerate);
710710
}
711711

712712
static struct changed_htlc *changed_htlc_arr(const tal_t *ctx,
@@ -787,14 +787,14 @@ static u8 *master_wait_sync_reply(const tal_t *ctx,
787787
{
788788
u8 *reply;
789789

790-
status_trace("Sending master %u", fromwire_peektype(msg));
790+
status_debug("Sending master %u", fromwire_peektype(msg));
791791

792792
if (!wire_sync_write(MASTER_FD, msg))
793793
status_failed(STATUS_FAIL_INTERNAL_ERROR,
794794
"Could not set sync write to master: %s",
795795
strerror(errno));
796796

797-
status_trace("... , awaiting %u", replytype);
797+
status_debug("... , awaiting %u", replytype);
798798

799799
for (;;) {
800800
int type;
@@ -806,11 +806,11 @@ static u8 *master_wait_sync_reply(const tal_t *ctx,
806806
strerror(errno));
807807
type = fromwire_peektype(reply);
808808
if (type == replytype) {
809-
status_trace("Got it!");
809+
status_debug("Got it!");
810810
break;
811811
}
812812

813-
status_trace("Nope, got %u instead", type);
813+
status_debug("Nope, got %u instead", type);
814814
msg_enqueue(peer->from_master, take(reply));
815815
}
816816

@@ -824,10 +824,10 @@ static u8 *gossipd_wait_sync_reply(const tal_t *ctx,
824824
/* We can forward gossip packets while waiting for our reply. */
825825
u8 *reply;
826826

827-
status_trace("Sending gossipd %u", fromwire_peektype(msg));
827+
status_debug("Sending gossipd %u", fromwire_peektype(msg));
828828

829829
wire_sync_write(peer->pps->gossip_fd, msg);
830-
status_trace("... , awaiting %u", replytype);
830+
status_debug("... , awaiting %u", replytype);
831831

832832
for (;;) {
833833
int type;
@@ -840,7 +840,7 @@ static u8 *gossipd_wait_sync_reply(const tal_t *ctx,
840840

841841
type = fromwire_peektype(reply);
842842
if (type == replytype) {
843-
status_trace("Got it!");
843+
status_debug("Got it!");
844844
break;
845845
}
846846

@@ -998,7 +998,7 @@ static secp256k1_ecdsa_signature *calc_commitsigs(const tal_t *ctx,
998998
"Reading sign_remote_commitment_tx reply: %s",
999999
tal_hex(tmpctx, msg));
10001000

1001-
status_trace("Creating commit_sig signature %"PRIu64" %s for tx %s wscript %s key %s",
1001+
status_debug("Creating commit_sig signature %"PRIu64" %s for tx %s wscript %s key %s",
10021002
commit_index,
10031003
type_to_string(tmpctx, struct bitcoin_signature,
10041004
commit_sig),
@@ -1037,7 +1037,7 @@ static secp256k1_ecdsa_signature *calc_commitsigs(const tal_t *ctx,
10371037
tal_hex(tmpctx, msg));
10381038

10391039
htlc_sigs[i] = sig.s;
1040-
status_trace("Creating HTLC signature %s for tx %s wscript %s key %s",
1040+
status_debug("Creating HTLC signature %s for tx %s wscript %s key %s",
10411041
type_to_string(tmpctx, struct bitcoin_signature,
10421042
&sig),
10431043
type_to_string(tmpctx, struct bitcoin_tx, txs[1+i]),
@@ -1096,7 +1096,7 @@ static void send_commit(struct peer *peer)
10961096
peer->commit_timer_attempts++;
10971097
/* Only report this in extreme cases */
10981098
if (peer->commit_timer_attempts % 100 == 0)
1099-
status_trace("Can't send commit:"
1099+
status_debug("Can't send commit:"
11001100
" waiting for revoke_and_ack with %"
11011101
PRIu64" attempts",
11021102
peer->commit_timer_attempts);
@@ -1112,7 +1112,7 @@ static void send_commit(struct peer *peer)
11121112
* - MUST NOT send any `update` message after a `shutdown`.
11131113
*/
11141114
if (peer->shutdown_sent[LOCAL] && !num_channel_htlcs(peer->channel)) {
1115-
status_trace("Can't send commit: final shutdown phase");
1115+
status_debug("Can't send commit: final shutdown phase");
11161116

11171117
peer->commit_timer = NULL;
11181118
return;
@@ -1160,7 +1160,7 @@ static void send_commit(struct peer *peer)
11601160
*/
11611161
changed_htlcs = tal_arr(tmpctx, const struct htlc *, 0);
11621162
if (!channel_sending_commit(peer->channel, &changed_htlcs)) {
1163-
status_trace("Can't send commit: nothing to send");
1163+
status_debug("Can't send commit: nothing to send");
11641164

11651165
/* Covers the case where we've just been told to shutdown. */
11661166
maybe_send_shutdown(peer);
@@ -1172,7 +1172,7 @@ static void send_commit(struct peer *peer)
11721172
htlc_sigs = calc_commitsigs(tmpctx, peer, peer->next_index[REMOTE],
11731173
&commit_sig);
11741174

1175-
status_trace("Telling master we're about to commit...");
1175+
status_debug("Telling master we're about to commit...");
11761176
/* Tell master to save this next commit to database, then wait. */
11771177
msg = sending_commitsig_msg(NULL, peer->next_index[REMOTE],
11781178
channel_feerate(peer->channel, REMOTE),
@@ -1183,7 +1183,7 @@ static void send_commit(struct peer *peer)
11831183
master_wait_sync_reply(tmpctx, peer, take(msg),
11841184
WIRE_CHANNEL_SENDING_COMMITSIG_REPLY);
11851185

1186-
status_trace("Sending commit_sig with %zu htlc sigs",
1186+
status_debug("Sending commit_sig with %zu htlc sigs",
11871187
tal_count(htlc_sigs));
11881188

11891189
peer->next_index[REMOTE]++;
@@ -1265,7 +1265,7 @@ static void send_revocation(struct peer *peer)
12651265

12661266
/* If this queues more changes on the other end, send commit. */
12671267
if (channel_sending_revoke_and_ack(peer->channel)) {
1268-
status_trace("revoke_and_ack made pending: commit timer");
1268+
status_debug("revoke_and_ack made pending: commit timer");
12691269
start_commit_timer(peer);
12701270
}
12711271

@@ -1375,7 +1375,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
13751375
* - MUST NOT send a `commitment_signed` message that does not
13761376
* include any updates.
13771377
*/
1378-
status_trace("Oh hi LND! Empty commitment at #%"PRIu64,
1378+
status_debug("Oh hi LND! Empty commitment at #%"PRIu64,
13791379
peer->next_index[LOCAL]);
13801380
if (peer->last_empty_commitment == peer->next_index[LOCAL] - 1)
13811381
peer_failed(peer->pps,
@@ -1386,7 +1386,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
13861386

13871387
/* We were supposed to check this was affordable as we go. */
13881388
if (peer->channel->funder == REMOTE) {
1389-
status_trace("Feerates are %u/%u",
1389+
status_debug("Feerates are %u/%u",
13901390
peer->channel->view[LOCAL].feerate_per_kw,
13911391
peer->channel->view[REMOTE].feerate_per_kw);
13921392
assert(can_funder_afford_feerate(peer->channel,
@@ -1411,7 +1411,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
14111411
&peer->next_local_per_commit, &remote_htlckey))
14121412
status_failed(STATUS_FAIL_INTERNAL_ERROR,
14131413
"Deriving remote_htlckey");
1414-
status_trace("Derived key %s from basepoint %s, point %s",
1414+
status_debug("Derived key %s from basepoint %s, point %s",
14151415
type_to_string(tmpctx, struct pubkey, &remote_htlckey),
14161416
type_to_string(tmpctx, struct pubkey,
14171417
&peer->channel->basepoints[REMOTE].htlc),
@@ -1480,7 +1480,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
14801480
&remote_htlckey));
14811481
}
14821482

1483-
status_trace("Received commit_sig with %zu htlc sigs",
1483+
status_debug("Received commit_sig with %zu htlc sigs",
14841484
tal_count(htlc_sigs));
14851485

14861486
/* Tell master daemon, then wait for ack. */
@@ -1506,7 +1506,7 @@ static u8 *got_revoke_msg(const tal_t *ctx, u64 revoke_num,
15061506
struct changed_htlc c;
15071507
const struct htlc *htlc = changed_htlcs[i];
15081508

1509-
status_trace("HTLC %"PRIu64"[%s] => %s",
1509+
status_debug("HTLC %"PRIu64"[%s] => %s",
15101510
htlc->id, side_to_str(htlc_owner(htlc)),
15111511
htlc_state_name(htlc->state));
15121512

@@ -1568,9 +1568,9 @@ static void handle_peer_revoke_and_ack(struct peer *peer, const u8 *msg)
15681568
/* We start timer even if this returns false: we might have delayed
15691569
* commit because we were waiting for this! */
15701570
if (channel_rcvd_revoke_and_ack(peer->channel, &changed_htlcs))
1571-
status_trace("Commits outstanding after recv revoke_and_ack");
1571+
status_debug("Commits outstanding after recv revoke_and_ack");
15721572
else
1573-
status_trace("No commits outstanding after recv revoke_and_ack");
1573+
status_debug("No commits outstanding after recv revoke_and_ack");
15741574

15751575
/* Tell master about things this locks in, wait for response */
15761576
msg = got_revoke_msg(NULL, peer->revocations_received++,
@@ -1582,7 +1582,7 @@ static void handle_peer_revoke_and_ack(struct peer *peer, const u8 *msg)
15821582

15831583
peer->old_remote_per_commit = peer->remote_per_commit;
15841584
peer->remote_per_commit = next_per_commit;
1585-
status_trace("revoke_and_ack %s: remote_per_commit = %s, old_remote_per_commit = %s",
1585+
status_debug("revoke_and_ack %s: remote_per_commit = %s, old_remote_per_commit = %s",
15861586
side_to_str(peer->channel->funder),
15871587
type_to_string(tmpctx, struct pubkey,
15881588
&peer->remote_per_commit),
@@ -1948,7 +1948,7 @@ static void resend_commitment(struct peer *peer, const struct changed_htlc *last
19481948
secp256k1_ecdsa_signature *htlc_sigs;
19491949
u8 *msg;
19501950

1951-
status_trace("Retransmitting commitment, feerate LOCAL=%u REMOTE=%u",
1951+
status_debug("Retransmitting commitment, feerate LOCAL=%u REMOTE=%u",
19521952
channel_feerate(peer->channel, LOCAL),
19531953
channel_feerate(peer->channel, REMOTE));
19541954

@@ -2106,7 +2106,7 @@ static void check_current_dataloss_fields(struct peer *peer,
21062106
* - MUST set `your_last_per_commitment_secret` to all zeroes
21072107
*/
21082108

2109-
status_trace("next_revocation_number = %"PRIu64,
2109+
status_debug("next_revocation_number = %"PRIu64,
21102110
next_revocation_number);
21112111
if (next_revocation_number == 0)
21122112
memset(&old_commit_secret, 0, sizeof(old_commit_secret));
@@ -2130,7 +2130,7 @@ static void check_current_dataloss_fields(struct peer *peer,
21302130
type_to_string(tmpctx, struct secret,
21312131
&old_commit_secret));
21322132

2133-
status_trace("Reestablish, comparing commitments. Remote's next local commitment number"
2133+
status_debug("Reestablish, comparing commitments. Remote's next local commitment number"
21342134
" is %"PRIu64". Our next remote is %"PRIu64" with %"PRIu64
21352135
" revocations received",
21362136
next_commitment_number,
@@ -2173,7 +2173,7 @@ static void check_current_dataloss_fields(struct peer *peer,
21732173
}
21742174
}
21752175

2176-
status_trace("option_data_loss_protect: fields are correct");
2176+
status_debug("option_data_loss_protect: fields are correct");
21772177
}
21782178

21792179
/* Older LND sometimes sends funding_locked before reestablish! */
@@ -2187,7 +2187,7 @@ static bool capture_premature_msg(const u8 ***shit_lnd_says, const u8 *msg)
21872187
if (tal_count(*shit_lnd_says) > 10)
21882188
return false;
21892189

2190-
status_trace("Stashing early %s msg!",
2190+
status_debug("Stashing early %s msg!",
21912191
wire_type_name(fromwire_peektype(msg)));
21922192

21932193
tal_arr_expand(shit_lnd_says, tal_steal(*shit_lnd_says, msg));
@@ -2298,7 +2298,7 @@ static void peer_reconnect(struct peer *peer,
22982298
}
22992299
}
23002300

2301-
status_trace("Got reestablish commit=%"PRIu64" revoke=%"PRIu64,
2301+
status_debug("Got reestablish commit=%"PRIu64" revoke=%"PRIu64,
23022302
next_commitment_number,
23032303
next_revocation_number);
23042304

@@ -2513,7 +2513,7 @@ static void handle_funding_depth(struct peer *peer, const u8 *msg)
25132513

25142514
if (!peer->funding_locked[LOCAL]) {
25152515

2516-
status_trace("funding_locked: sending commit index %"PRIu64": %s",
2516+
status_debug("funding_locked: sending commit index %"PRIu64": %s",
25172517
peer->next_index[LOCAL],
25182518
type_to_string(tmpctx, struct pubkey,
25192519
&peer->next_local_per_commit));
@@ -2560,7 +2560,7 @@ static void handle_offer_htlc(struct peer *peer, const u8 *inmsg)
25602560
e = channel_add_htlc(peer->channel, LOCAL, peer->htlc_id,
25612561
amount, cltv_expiry, &payment_hash,
25622562
onion_routing_packet, NULL, &htlc_fee);
2563-
status_trace("Adding HTLC %"PRIu64" amount=%s cltv=%u gave %s",
2563+
status_debug("Adding HTLC %"PRIu64" amount=%s cltv=%u gave %s",
25642564
peer->htlc_id,
25652565
type_to_string(tmpctx, struct amount_msat, &amount),
25662566
cltv_expiry,
@@ -2744,7 +2744,7 @@ static void handle_dev_reenable_commit(struct peer *peer)
27442744
{
27452745
dev_suppress_commit = false;
27462746
start_commit_timer(peer);
2747-
status_trace("dev_reenable_commit");
2747+
status_debug("dev_reenable_commit");
27482748
wire_sync_write(MASTER_FD,
27492749
take(towire_channel_dev_reenable_commit_reply(NULL)));
27502750
}
@@ -2930,7 +2930,7 @@ static void init_channel(struct peer *peer)
29302930
/* stdin == requests, 3 == peer, 4 = gossip, 5 = gossip_store, 6 = HSM */
29312931
per_peer_state_set_fds(peer->pps, 3, 4, 5);
29322932

2933-
status_trace("init %s: remote_per_commit = %s, old_remote_per_commit = %s"
2933+
status_debug("init %s: remote_per_commit = %s, old_remote_per_commit = %s"
29342934
" next_idx_local = %"PRIu64
29352935
" next_idx_remote = %"PRIu64
29362936
" revocations_received = %"PRIu64
@@ -3105,7 +3105,7 @@ int main(int argc, char *argv[])
31053105
/* For simplicity, we process one event at a time. */
31063106
msg = msg_dequeue(peer->from_master);
31073107
if (msg) {
3108-
status_trace("Now dealing with deferred %s",
3108+
status_debug("Now dealing with deferred %s",
31093109
channel_wire_type_name(
31103110
fromwire_peektype(msg)));
31113111
req_in(peer, msg);

0 commit comments

Comments
 (0)
This repository has been archived.