diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-12-12 19:08:24 +0100 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-12-12 19:08:24 +0100 |
commit | ef58152c2bb1c91b8771b88f1c7e59e7e890dc55 (patch) | |
tree | 209ebb236fc88ee6750547156d032744bb75e904 /src/exchange-lib/testing_api_cmd_batch.c | |
parent | 00625791a2c596eed9636fb4ac550f2481ceb14c (diff) |
5462: implementing the iteration.
Diffstat (limited to 'src/exchange-lib/testing_api_cmd_batch.c')
-rw-r--r-- | src/exchange-lib/testing_api_cmd_batch.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/exchange-lib/testing_api_cmd_batch.c b/src/exchange-lib/testing_api_cmd_batch.c index 15b0413d..f9e452dd 100644 --- a/src/exchange-lib/testing_api_cmd_batch.c +++ b/src/exchange-lib/testing_api_cmd_batch.c @@ -94,8 +94,13 @@ batch_cleanup (void *cls, for (unsigned int i=0; NULL != bs->batch[i].label; i++) + { + TALER_LOG_DEBUG ("Batch-cleaning element %u, labelled '%s'\n", + i, + bs->batch[i].label); bs->batch[i].cleanup (bs->batch[i].cls, &bs->batch[i]); + } GNUNET_free_non_null (bs->batch); GNUNET_free (bs); } |