commit 93e8e6e0f7f76625794cc240a572bcd9faad9c74
parent ea140f783b2ff18da1f5db14ff331d0110cb5e3f
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 19 Dec 2022 14:00:28 +0100
-debug dbinit call
Diffstat:
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/src/benchmark/taler-bank-benchmark.c b/src/benchmark/taler-bank-benchmark.c
@@ -552,16 +552,20 @@ parallel_benchmark (void)
{
struct GNUNET_OS_Process *dbinit;
+ char buf[1024];
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
- "Running DB init with `%s'\n",
- cfg_filename);
+ "Running DB init with `%s' at %s\n",
+ cfg_filename,
+ getcwd (buf));
dbinit = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
NULL, NULL, NULL,
"taler-exchange-dbinit",
"taler-exchange-dbinit",
"-c", cfg_filename,
"-r",
+ (NULL != loglev) ? "-L" : NULL,
+ loglev,
NULL);
if (NULL == dbinit)
{
@@ -577,6 +581,9 @@ parallel_benchmark (void)
GNUNET_break (GNUNET_OK ==
GNUNET_OS_process_wait (dbinit));
GNUNET_OS_process_destroy (dbinit);
+ GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+ "Done with DB init with `%s'\n",
+ cfg_filename);
}
/* start exchange wirewatch */
for (unsigned int w = 0; w<start_wirewatch; w++)