commit d8deed297a0cfc340b23ffa2115c078a7312e385
parent bffe839e82ae0321effc370610e1c9872e83acf0
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date: Tue, 15 May 2018 12:59:06 +0200
debug stmt
Diffstat:
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/src/twister/taler-twister-service.c b/src/twister/taler-twister-service.c
@@ -1243,7 +1243,8 @@ create_response (void *cls,
if ('\0' != flip_path_ul[0])
{
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Going to modify the upload object\n");
+ "Going to modify the upload object (%s)\n",
+ hr->io_buf);
json_t *tmp;
tmp = json_loads (hr->io_buf,
@@ -1257,6 +1258,11 @@ create_response (void *cls,
* bit does not change the data size. */
hr->io_buf = json_dumps (tmp,
JSON_COMPACT);
+
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+ "Flipped (?) upload object (%s)\n",
+ hr->io_buf);
+
json_decref (tmp);
}