commit 4107da9ec692c45346fa4b97b97b5e8e8e4ee51b
parent 14bde627cec24e8503d032d8e2e779aca2a223a6
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Tue, 23 Jan 2024 10:50:05 +0100
more logging
Diffstat:
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/taler-mdb.c b/src/taler-mdb.c
@@ -968,8 +968,9 @@ show_error (const char *err_type)
stop_advertising ();
hide_error (); /* just to be sure */
GNUNET_log (GNUNET_ERROR_TYPE_INFO,
- "Showing error `%s'\n",
- err_type);
+ "Showing error `%s' using `%s'\n",
+ err_type,
+ err_process_command);
if (NULL == err_process_command)
{
return;
@@ -977,6 +978,7 @@ show_error (const char *err_type)
err_child = start_command (err_process_command,
err_type,
NULL);
+ GNUNET_break (NULL != err_child);
}