mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-22 14:42:40 +01:00
autoclean: remove per-delete debugging messages.
They slow down benchmarking, which is kind of unfair! Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
13e10877de
commit
540a6e4b99
1 changed files with 0 additions and 9 deletions
|
@ -223,8 +223,6 @@ static struct command_result *listinvoices_done(struct command *cmd,
|
|||
json_add_tok(req->js, "label", label, buf);
|
||||
json_add_tok(req->js, "status", status, buf);
|
||||
send_outreq(plugin, req);
|
||||
plugin_log(plugin, LOG_DBG, "Cleaning up %.*s",
|
||||
json_tok_full_len(label), json_tok_full(buf, label));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -278,8 +276,6 @@ static struct command_result *listsendpays_done(struct command *cmd,
|
|||
json_add_tok(req->js, "payment_hash", phash, buf);
|
||||
json_add_tok(req->js, "status", status, buf);
|
||||
send_outreq(plugin, req);
|
||||
plugin_log(plugin, LOG_DBG, "Cleaning up %.*s",
|
||||
json_tok_full_len(phash), json_tok_full(buf, phash));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -343,11 +339,6 @@ static struct command_result *listforwards_done(struct command *cmd,
|
|||
json_add_tok(req->js, "in_htlc_id", inid, buf);
|
||||
json_add_tok(req->js, "status", status, buf);
|
||||
send_outreq(plugin, req);
|
||||
plugin_log(plugin, LOG_DBG, "Cleaning up fwd %.*s/%.*s",
|
||||
json_tok_full_len(inchan),
|
||||
json_tok_full(buf, inchan),
|
||||
json_tok_full_len(inid),
|
||||
json_tok_full(buf, inid));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue