From b49ccfa42bd25324f69fc3e39ccbc89079ff7722 Mon Sep 17 00:00:00 2001 From: Se7enZ Date: Mon, 15 Sep 2025 10:35:14 +0200 Subject: [PATCH] fix: Remove "Printing" from listdatastore debug log. Changelog-None --- lightningd/datastore.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lightningd/datastore.c b/lightningd/datastore.c index 0f589a7c6..f3ecfc6d9 100644 --- a/lightningd/datastore.c +++ b/lightningd/datastore.c @@ -222,10 +222,6 @@ static struct command_result *json_listdatastore(struct command *cmd, NULL)) return command_param_failed(); - if (key) - log_debug(cmd->ld->log, "Looking for %s", - datastore_key_fmt(tmpctx, key)); - response = json_stream_success(cmd); json_array_start(response, "datastore"); @@ -235,12 +231,9 @@ static struct command_result *json_listdatastore(struct command *cmd, stmt = wallet_datastore_next(cmd, key, stmt, &k, &data, &generation)) { - log_debug(cmd->ld->log, "Got %s", - datastore_key_fmt(tmpctx, k)); /* Don't list sub-children, except as summary to show it exists. */ if (tal_count(k) > tal_count(key) + 1) { - log_debug(cmd->ld->log, "Too long"); if (!prev_k || !datastore_key_startswith(k, prev_k)) { prev_k = tal_dup_arr(cmd, const char *, k, tal_count(key) + 1, 0); @@ -249,7 +242,6 @@ static struct command_result *json_listdatastore(struct command *cmd, json_object_end(response); } } else { - log_debug(cmd->ld->log, "Printing"); json_object_start(response, NULL); json_add_datastore(response, k, data, generation); json_object_end(response);