aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-09-05 14:19:49 +0200
committerChristian Grothoff <christian@grothoff.org>2024-09-05 14:19:49 +0200
commit6af6f231fc984c55924dea55fa76ff0b1d86751e (patch)
tree64b6b92f17b9145e2a667812f13dc24748414930
parent2606fbc7a78a1b58418a460b71495fe8fa1b2e00 (diff)
fix #9140: give better error message
-rw-r--r--src/auditor/taler-helper-auditor-wire-credit.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/auditor/taler-helper-auditor-wire-credit.c b/src/auditor/taler-helper-auditor-wire-credit.c
index 5cf38a5b3..940f3cfa3 100644
--- a/src/auditor/taler-helper-auditor-wire-credit.c
+++ b/src/auditor/taler-helper-auditor-wire-credit.c
@@ -848,7 +848,7 @@ history_credit_cb (void *cls,
break;
}
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
- "Error fetching credit history of account %s: %u/%s!\n",
+ "Error fetching credit history of account %s: %u (%s)\n",
wa->ai->section_name,
chr->http_status,
TALER_ErrorCode_get_hint (chr->ec));
@@ -1122,6 +1122,9 @@ run (void *cls,
"TINY_AMOUNT",
&tiny_amount))
{
+ GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
+ "auditor",
+ "TINY_AMOUNT");
global_ret = EXIT_NOTCONFIGURED;
return;
}