@@ -284,14 +284,9 @@ static void end_stfu_mode(struct peer *peer)
284
284
static void maybe_send_stfu (struct peer * peer )
285
285
{
286
286
if (!peer -> stfu ) {
287
- status_unusual ("maybe_send_stfu called while not in STFU mode (ignored)." );
288
287
return ;
289
288
}
290
289
291
- status_debug ("maybe_send_stfu but yeschanneld is %s" ,
292
- type_to_string (tmpctx , struct channel_id ,
293
- & peer -> channel_id ));
294
-
295
290
if (!peer -> stfu_sent [LOCAL ] && !pending_updates (peer -> channel , LOCAL , false)) {
296
291
status_debug ("Sending peer that we want to STFU." );
297
292
u8 * msg = towire_stfu (NULL , & peer -> channel_id ,
@@ -300,7 +295,7 @@ static void maybe_send_stfu(struct peer *peer)
300
295
peer -> stfu_sent [LOCAL ] = true;
301
296
}
302
297
else if (pending_updates (peer -> channel , LOCAL , false)) {
303
- status_debug ("Pending updates prevent us from STFU mode at this time." );
298
+ status_info ("Pending updates prevent us from STFU mode at this time." );
304
299
}
305
300
306
301
if (peer -> stfu_sent [LOCAL ] && peer -> stfu_sent [REMOTE ]) {
@@ -315,9 +310,6 @@ static void maybe_send_stfu(struct peer *peer)
315
310
peer -> on_stfu_success = NULL ;
316
311
}
317
312
}
318
- else {
319
- status_debug ("STFU in await mode." );
320
- }
321
313
}
322
314
323
315
static void handle_stfu (struct peer * peer , const u8 * stfu )
0 commit comments