We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e848f10 commit 0de781dCopy full SHA for 0de781d
plugins/renepay/mods.c
@@ -42,7 +42,7 @@ struct command_result *payment_continue(struct payment *payment)
42
"payment_continue expected payment_modifier "
43
"but NULL found");
44
45
- plugin_log(pay_plugin->plugin, LOG_DBG, "Calling modifier %s",
+ plugin_log(pay_plugin->plugin, LOG_TRACE, "Calling modifier %s",
46
mod->name);
47
return mod->step_cb(payment);
48
} else if (op == OP_IF) {
@@ -55,7 +55,7 @@ struct command_result *payment_continue(struct payment *payment)
55
"payment_continue expected pointer to "
56
"condition but NULL found");
57
58
- plugin_log(pay_plugin->plugin, LOG_DBG,
+ plugin_log(pay_plugin->plugin, LOG_TRACE,
59
"Calling payment condition %s", cond->name);
60
61
const u64 position_iftrue =
0 commit comments