summaryrefslogtreecommitdiff
path: root/handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'handler.h')
-rw-r--r--handler.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/handler.h b/handler.h
index 7b2ac90..9c46975 100644
--- a/handler.h
+++ b/handler.h
@@ -1,3 +1,6 @@
+#ifdef DEBUG
+#include <stdio.h>
+#endif
#include <string.h>
#include <json.h>
#include "pikul.h"
@@ -8,6 +11,10 @@ void recurse(struct json_object *, const char *[], struct json_object **);
inline void handle_services(const char *contents, size_t num_bytes, const char *status_trail[],
const char *trail[], const char *attributes[], struct pikul_services **services)
{
+#ifdef DEBUG
+ ((char *)contents)[num_bytes] = '\0';
+ fprintf(stderr, "%s\n", contents);
+#endif
json_object *response = json_tokener_parse_ex(tokener, contents, num_bytes);
enum json_tokener_error error = json_tokener_get_error(tokener);
if (!response) {