diff --git a/gossipd/gossmap_manage.c b/gossipd/gossmap_manage.c index c4e6429469c3..b3b2e3f38891 100644 --- a/gossipd/gossmap_manage.c +++ b/gossipd/gossmap_manage.c @@ -824,7 +824,7 @@ static const char *process_channel_update(const tal_t *ctx, u32 prev_timestamp = gossip_store_get_timestamp(gm->gs, chan->cupdate_off[dir]); if (prev_timestamp >= timestamp) { - status_debug("Too-old update for %s", + status_trace("Too-old update for %s", fmt_short_channel_id(tmpctx, scid)); /* Too old, ignore */ return NULL; diff --git a/plugins/chanbackup.c b/plugins/chanbackup.c index 140185c4a6aa..172cbc795660 100644 --- a/plugins/chanbackup.c +++ b/plugins/chanbackup.c @@ -543,7 +543,7 @@ static struct command_result *after_staticbackup(struct command *cmd, const jsmntok_t *scbs = json_get_member(buf, params, "scb"); struct out_req *req; json_to_scb_chan(buf, scbs, &scb_chan); - plugin_log(cmd->plugin, LOG_INFORM, "Updating the SCB"); + plugin_log(cmd->plugin, LOG_DBG, "Updating the SCB"); update_scb(cmd->plugin, scb_chan); struct info *info = tal(cmd, struct info);