summaryrefslogtreecommitdiffstats
path: root/src/jq.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/jq.h')
-rw-r--r--src/jq.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/jq.h b/src/jq.h
index b80d442f..3067d8ae 100644
--- a/src/jq.h
+++ b/src/jq.h
@@ -4,7 +4,11 @@
#include <stdio.h>
#include "jv.h"
-enum {JQ_DEBUG_TRACE = 1};
+enum {
+ JQ_DEBUG_TRACE = 1,
+ JQ_DEBUG_TRACE_DETAIL = 2,
+ JQ_DEBUG_TRACE_ALL = JQ_DEBUG_TRACE | JQ_DEBUG_TRACE_DETAIL,
+};
typedef struct jq_state jq_state;
typedef void (*jq_msg_cb)(void *, jv);