@@ -344,7 +344,7 @@ static void send_announcement_signatures(struct peer *peer)
344
344
const u8 * msg , * ca , * req ;
345
345
struct pubkey mykey ;
346
346
347
- status_trace ("Exchanging announcement signatures." );
347
+ status_debug ("Exchanging announcement signatures." );
348
348
ca = create_channel_announcement (tmpctx , peer );
349
349
req = towire_hsm_cannouncement_sig_req (tmpctx , ca );
350
350
@@ -677,7 +677,7 @@ static void handle_peer_feechange(struct peer *peer, const u8 *msg)
677
677
& peer -> channel_id ,
678
678
"update_fee from non-funder?" );
679
679
680
- status_trace ("update_fee %u, range %u-%u" ,
680
+ status_debug ("update_fee %u, range %u-%u" ,
681
681
feerate , peer -> feerate_min , peer -> feerate_max );
682
682
683
683
/* BOLT #2:
@@ -706,7 +706,7 @@ static void handle_peer_feechange(struct peer *peer, const u8 *msg)
706
706
"update_fee %u unaffordable" ,
707
707
feerate );
708
708
709
- status_trace ("peer updated fee to %u" , feerate );
709
+ status_debug ("peer updated fee to %u" , feerate );
710
710
}
711
711
712
712
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,
787
787
{
788
788
u8 * reply ;
789
789
790
- status_trace ("Sending master %u" , fromwire_peektype (msg ));
790
+ status_debug ("Sending master %u" , fromwire_peektype (msg ));
791
791
792
792
if (!wire_sync_write (MASTER_FD , msg ))
793
793
status_failed (STATUS_FAIL_INTERNAL_ERROR ,
794
794
"Could not set sync write to master: %s" ,
795
795
strerror (errno ));
796
796
797
- status_trace ("... , awaiting %u" , replytype );
797
+ status_debug ("... , awaiting %u" , replytype );
798
798
799
799
for (;;) {
800
800
int type ;
@@ -806,11 +806,11 @@ static u8 *master_wait_sync_reply(const tal_t *ctx,
806
806
strerror (errno ));
807
807
type = fromwire_peektype (reply );
808
808
if (type == replytype ) {
809
- status_trace ("Got it!" );
809
+ status_debug ("Got it!" );
810
810
break ;
811
811
}
812
812
813
- status_trace ("Nope, got %u instead" , type );
813
+ status_debug ("Nope, got %u instead" , type );
814
814
msg_enqueue (peer -> from_master , take (reply ));
815
815
}
816
816
@@ -824,10 +824,10 @@ static u8 *gossipd_wait_sync_reply(const tal_t *ctx,
824
824
/* We can forward gossip packets while waiting for our reply. */
825
825
u8 * reply ;
826
826
827
- status_trace ("Sending gossipd %u" , fromwire_peektype (msg ));
827
+ status_debug ("Sending gossipd %u" , fromwire_peektype (msg ));
828
828
829
829
wire_sync_write (peer -> pps -> gossip_fd , msg );
830
- status_trace ("... , awaiting %u" , replytype );
830
+ status_debug ("... , awaiting %u" , replytype );
831
831
832
832
for (;;) {
833
833
int type ;
@@ -840,7 +840,7 @@ static u8 *gossipd_wait_sync_reply(const tal_t *ctx,
840
840
841
841
type = fromwire_peektype (reply );
842
842
if (type == replytype ) {
843
- status_trace ("Got it!" );
843
+ status_debug ("Got it!" );
844
844
break ;
845
845
}
846
846
@@ -998,7 +998,7 @@ static secp256k1_ecdsa_signature *calc_commitsigs(const tal_t *ctx,
998
998
"Reading sign_remote_commitment_tx reply: %s" ,
999
999
tal_hex (tmpctx , msg ));
1000
1000
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" ,
1002
1002
commit_index ,
1003
1003
type_to_string (tmpctx , struct bitcoin_signature ,
1004
1004
commit_sig ),
@@ -1037,7 +1037,7 @@ static secp256k1_ecdsa_signature *calc_commitsigs(const tal_t *ctx,
1037
1037
tal_hex (tmpctx , msg ));
1038
1038
1039
1039
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" ,
1041
1041
type_to_string (tmpctx , struct bitcoin_signature ,
1042
1042
& sig ),
1043
1043
type_to_string (tmpctx , struct bitcoin_tx , txs [1 + i ]),
@@ -1096,7 +1096,7 @@ static void send_commit(struct peer *peer)
1096
1096
peer -> commit_timer_attempts ++ ;
1097
1097
/* Only report this in extreme cases */
1098
1098
if (peer -> commit_timer_attempts % 100 == 0 )
1099
- status_trace ("Can't send commit:"
1099
+ status_debug ("Can't send commit:"
1100
1100
" waiting for revoke_and_ack with %"
1101
1101
PRIu64 " attempts" ,
1102
1102
peer -> commit_timer_attempts );
@@ -1112,7 +1112,7 @@ static void send_commit(struct peer *peer)
1112
1112
* - MUST NOT send any `update` message after a `shutdown`.
1113
1113
*/
1114
1114
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" );
1116
1116
1117
1117
peer -> commit_timer = NULL ;
1118
1118
return ;
@@ -1160,7 +1160,7 @@ static void send_commit(struct peer *peer)
1160
1160
*/
1161
1161
changed_htlcs = tal_arr (tmpctx , const struct htlc * , 0 );
1162
1162
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" );
1164
1164
1165
1165
/* Covers the case where we've just been told to shutdown. */
1166
1166
maybe_send_shutdown (peer );
@@ -1172,7 +1172,7 @@ static void send_commit(struct peer *peer)
1172
1172
htlc_sigs = calc_commitsigs (tmpctx , peer , peer -> next_index [REMOTE ],
1173
1173
& commit_sig );
1174
1174
1175
- status_trace ("Telling master we're about to commit..." );
1175
+ status_debug ("Telling master we're about to commit..." );
1176
1176
/* Tell master to save this next commit to database, then wait. */
1177
1177
msg = sending_commitsig_msg (NULL , peer -> next_index [REMOTE ],
1178
1178
channel_feerate (peer -> channel , REMOTE ),
@@ -1183,7 +1183,7 @@ static void send_commit(struct peer *peer)
1183
1183
master_wait_sync_reply (tmpctx , peer , take (msg ),
1184
1184
WIRE_CHANNEL_SENDING_COMMITSIG_REPLY );
1185
1185
1186
- status_trace ("Sending commit_sig with %zu htlc sigs" ,
1186
+ status_debug ("Sending commit_sig with %zu htlc sigs" ,
1187
1187
tal_count (htlc_sigs ));
1188
1188
1189
1189
peer -> next_index [REMOTE ]++ ;
@@ -1265,7 +1265,7 @@ static void send_revocation(struct peer *peer)
1265
1265
1266
1266
/* If this queues more changes on the other end, send commit. */
1267
1267
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" );
1269
1269
start_commit_timer (peer );
1270
1270
}
1271
1271
@@ -1375,7 +1375,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
1375
1375
* - MUST NOT send a `commitment_signed` message that does not
1376
1376
* include any updates.
1377
1377
*/
1378
- status_trace ("Oh hi LND! Empty commitment at #%" PRIu64 ,
1378
+ status_debug ("Oh hi LND! Empty commitment at #%" PRIu64 ,
1379
1379
peer -> next_index [LOCAL ]);
1380
1380
if (peer -> last_empty_commitment == peer -> next_index [LOCAL ] - 1 )
1381
1381
peer_failed (peer -> pps ,
@@ -1386,7 +1386,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
1386
1386
1387
1387
/* We were supposed to check this was affordable as we go. */
1388
1388
if (peer -> channel -> funder == REMOTE ) {
1389
- status_trace ("Feerates are %u/%u" ,
1389
+ status_debug ("Feerates are %u/%u" ,
1390
1390
peer -> channel -> view [LOCAL ].feerate_per_kw ,
1391
1391
peer -> channel -> view [REMOTE ].feerate_per_kw );
1392
1392
assert (can_funder_afford_feerate (peer -> channel ,
@@ -1411,7 +1411,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
1411
1411
& peer -> next_local_per_commit , & remote_htlckey ))
1412
1412
status_failed (STATUS_FAIL_INTERNAL_ERROR ,
1413
1413
"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" ,
1415
1415
type_to_string (tmpctx , struct pubkey , & remote_htlckey ),
1416
1416
type_to_string (tmpctx , struct pubkey ,
1417
1417
& peer -> channel -> basepoints [REMOTE ].htlc ),
@@ -1480,7 +1480,7 @@ static void handle_peer_commit_sig(struct peer *peer, const u8 *msg)
1480
1480
& remote_htlckey ));
1481
1481
}
1482
1482
1483
- status_trace ("Received commit_sig with %zu htlc sigs" ,
1483
+ status_debug ("Received commit_sig with %zu htlc sigs" ,
1484
1484
tal_count (htlc_sigs ));
1485
1485
1486
1486
/* Tell master daemon, then wait for ack. */
@@ -1506,7 +1506,7 @@ static u8 *got_revoke_msg(const tal_t *ctx, u64 revoke_num,
1506
1506
struct changed_htlc c ;
1507
1507
const struct htlc * htlc = changed_htlcs [i ];
1508
1508
1509
- status_trace ("HTLC %" PRIu64 "[%s] => %s" ,
1509
+ status_debug ("HTLC %" PRIu64 "[%s] => %s" ,
1510
1510
htlc -> id , side_to_str (htlc_owner (htlc )),
1511
1511
htlc_state_name (htlc -> state ));
1512
1512
@@ -1568,9 +1568,9 @@ static void handle_peer_revoke_and_ack(struct peer *peer, const u8 *msg)
1568
1568
/* We start timer even if this returns false: we might have delayed
1569
1569
* commit because we were waiting for this! */
1570
1570
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" );
1572
1572
else
1573
- status_trace ("No commits outstanding after recv revoke_and_ack" );
1573
+ status_debug ("No commits outstanding after recv revoke_and_ack" );
1574
1574
1575
1575
/* Tell master about things this locks in, wait for response */
1576
1576
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)
1582
1582
1583
1583
peer -> old_remote_per_commit = peer -> remote_per_commit ;
1584
1584
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" ,
1586
1586
side_to_str (peer -> channel -> funder ),
1587
1587
type_to_string (tmpctx , struct pubkey ,
1588
1588
& peer -> remote_per_commit ),
@@ -1948,7 +1948,7 @@ static void resend_commitment(struct peer *peer, const struct changed_htlc *last
1948
1948
secp256k1_ecdsa_signature * htlc_sigs ;
1949
1949
u8 * msg ;
1950
1950
1951
- status_trace ("Retransmitting commitment, feerate LOCAL=%u REMOTE=%u" ,
1951
+ status_debug ("Retransmitting commitment, feerate LOCAL=%u REMOTE=%u" ,
1952
1952
channel_feerate (peer -> channel , LOCAL ),
1953
1953
channel_feerate (peer -> channel , REMOTE ));
1954
1954
@@ -2106,7 +2106,7 @@ static void check_current_dataloss_fields(struct peer *peer,
2106
2106
* - MUST set `your_last_per_commitment_secret` to all zeroes
2107
2107
*/
2108
2108
2109
- status_trace ("next_revocation_number = %" PRIu64 ,
2109
+ status_debug ("next_revocation_number = %" PRIu64 ,
2110
2110
next_revocation_number );
2111
2111
if (next_revocation_number == 0 )
2112
2112
memset (& old_commit_secret , 0 , sizeof (old_commit_secret ));
@@ -2130,7 +2130,7 @@ static void check_current_dataloss_fields(struct peer *peer,
2130
2130
type_to_string (tmpctx , struct secret ,
2131
2131
& old_commit_secret ));
2132
2132
2133
- status_trace ("Reestablish, comparing commitments. Remote's next local commitment number"
2133
+ status_debug ("Reestablish, comparing commitments. Remote's next local commitment number"
2134
2134
" is %" PRIu64 ". Our next remote is %" PRIu64 " with %" PRIu64
2135
2135
" revocations received" ,
2136
2136
next_commitment_number ,
@@ -2173,7 +2173,7 @@ static void check_current_dataloss_fields(struct peer *peer,
2173
2173
}
2174
2174
}
2175
2175
2176
- status_trace ("option_data_loss_protect: fields are correct" );
2176
+ status_debug ("option_data_loss_protect: fields are correct" );
2177
2177
}
2178
2178
2179
2179
/* 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)
2187
2187
if (tal_count (* shit_lnd_says ) > 10 )
2188
2188
return false;
2189
2189
2190
- status_trace ("Stashing early %s msg!" ,
2190
+ status_debug ("Stashing early %s msg!" ,
2191
2191
wire_type_name (fromwire_peektype (msg )));
2192
2192
2193
2193
tal_arr_expand (shit_lnd_says , tal_steal (* shit_lnd_says , msg ));
@@ -2298,7 +2298,7 @@ static void peer_reconnect(struct peer *peer,
2298
2298
}
2299
2299
}
2300
2300
2301
- status_trace ("Got reestablish commit=%" PRIu64 " revoke=%" PRIu64 ,
2301
+ status_debug ("Got reestablish commit=%" PRIu64 " revoke=%" PRIu64 ,
2302
2302
next_commitment_number ,
2303
2303
next_revocation_number );
2304
2304
@@ -2513,7 +2513,7 @@ static void handle_funding_depth(struct peer *peer, const u8 *msg)
2513
2513
2514
2514
if (!peer -> funding_locked [LOCAL ]) {
2515
2515
2516
- status_trace ("funding_locked: sending commit index %" PRIu64 ": %s" ,
2516
+ status_debug ("funding_locked: sending commit index %" PRIu64 ": %s" ,
2517
2517
peer -> next_index [LOCAL ],
2518
2518
type_to_string (tmpctx , struct pubkey ,
2519
2519
& peer -> next_local_per_commit ));
@@ -2560,7 +2560,7 @@ static void handle_offer_htlc(struct peer *peer, const u8 *inmsg)
2560
2560
e = channel_add_htlc (peer -> channel , LOCAL , peer -> htlc_id ,
2561
2561
amount , cltv_expiry , & payment_hash ,
2562
2562
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" ,
2564
2564
peer -> htlc_id ,
2565
2565
type_to_string (tmpctx , struct amount_msat , & amount ),
2566
2566
cltv_expiry ,
@@ -2744,7 +2744,7 @@ static void handle_dev_reenable_commit(struct peer *peer)
2744
2744
{
2745
2745
dev_suppress_commit = false;
2746
2746
start_commit_timer (peer );
2747
- status_trace ("dev_reenable_commit" );
2747
+ status_debug ("dev_reenable_commit" );
2748
2748
wire_sync_write (MASTER_FD ,
2749
2749
take (towire_channel_dev_reenable_commit_reply (NULL )));
2750
2750
}
@@ -2930,7 +2930,7 @@ static void init_channel(struct peer *peer)
2930
2930
/* stdin == requests, 3 == peer, 4 = gossip, 5 = gossip_store, 6 = HSM */
2931
2931
per_peer_state_set_fds (peer -> pps , 3 , 4 , 5 );
2932
2932
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"
2934
2934
" next_idx_local = %" PRIu64
2935
2935
" next_idx_remote = %" PRIu64
2936
2936
" revocations_received = %" PRIu64
@@ -3105,7 +3105,7 @@ int main(int argc, char *argv[])
3105
3105
/* For simplicity, we process one event at a time. */
3106
3106
msg = msg_dequeue (peer -> from_master );
3107
3107
if (msg ) {
3108
- status_trace ("Now dealing with deferred %s" ,
3108
+ status_debug ("Now dealing with deferred %s" ,
3109
3109
channel_wire_type_name (
3110
3110
fromwire_peektype (msg )));
3111
3111
req_in (peer , msg );
0 commit comments