-debug dbinit call
This commit is contained in:
parent
ea140f783b
commit
93e8e6e0f7
@ -552,16 +552,20 @@ parallel_benchmark (void)
|
|||||||
|
|
||||||
{
|
{
|
||||||
struct GNUNET_OS_Process *dbinit;
|
struct GNUNET_OS_Process *dbinit;
|
||||||
|
char buf[1024];
|
||||||
|
|
||||||
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
||||||
"Running DB init with `%s'\n",
|
"Running DB init with `%s' at %s\n",
|
||||||
cfg_filename);
|
cfg_filename,
|
||||||
|
getcwd (buf));
|
||||||
dbinit = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
dbinit = GNUNET_OS_start_process (GNUNET_OS_INHERIT_STD_ALL,
|
||||||
NULL, NULL, NULL,
|
NULL, NULL, NULL,
|
||||||
"taler-exchange-dbinit",
|
"taler-exchange-dbinit",
|
||||||
"taler-exchange-dbinit",
|
"taler-exchange-dbinit",
|
||||||
"-c", cfg_filename,
|
"-c", cfg_filename,
|
||||||
"-r",
|
"-r",
|
||||||
|
(NULL != loglev) ? "-L" : NULL,
|
||||||
|
loglev,
|
||||||
NULL);
|
NULL);
|
||||||
if (NULL == dbinit)
|
if (NULL == dbinit)
|
||||||
{
|
{
|
||||||
@ -577,6 +581,9 @@ parallel_benchmark (void)
|
|||||||
GNUNET_break (GNUNET_OK ==
|
GNUNET_break (GNUNET_OK ==
|
||||||
GNUNET_OS_process_wait (dbinit));
|
GNUNET_OS_process_wait (dbinit));
|
||||||
GNUNET_OS_process_destroy (dbinit);
|
GNUNET_OS_process_destroy (dbinit);
|
||||||
|
GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
|
||||||
|
"Done with DB init with `%s'\n",
|
||||||
|
cfg_filename);
|
||||||
}
|
}
|
||||||
/* start exchange wirewatch */
|
/* start exchange wirewatch */
|
||||||
for (unsigned int w = 0; w<start_wirewatch; w++)
|
for (unsigned int w = 0; w<start_wirewatch; w++)
|
||||||
|
Loading…
Reference in New Issue
Block a user