Skip to content

Commit 0de781d

Browse files
Lagrang3ShahanaFarooqui
authored andcommitted
renepay: log renepay steps with LOG_TRACE
Previously it was flagged as LOG_DBG, but produces very verbose log files. Changelog-None Signed-off-by: Lagrang3 <[email protected]>
1 parent e848f10 commit 0de781d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/renepay/mods.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ struct command_result *payment_continue(struct payment *payment)
4242
"payment_continue expected payment_modifier "
4343
"but NULL found");
4444

45-
plugin_log(pay_plugin->plugin, LOG_DBG, "Calling modifier %s",
45+
plugin_log(pay_plugin->plugin, LOG_TRACE, "Calling modifier %s",
4646
mod->name);
4747
return mod->step_cb(payment);
4848
} else if (op == OP_IF) {
@@ -55,7 +55,7 @@ struct command_result *payment_continue(struct payment *payment)
5555
"payment_continue expected pointer to "
5656
"condition but NULL found");
5757

58-
plugin_log(pay_plugin->plugin, LOG_DBG,
58+
plugin_log(pay_plugin->plugin, LOG_TRACE,
5959
"Calling payment condition %s", cond->name);
6060

6161
const u64 position_iftrue =

0 commit comments

Comments
 (0)