summaryrefslogtreecommitdiff
path: root/module/p11-capi.h
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2008-12-09 21:56:50 +0000
committerStef Walter <stef@memberwebs.com>2008-12-09 21:56:50 +0000
commitfb9374be05108422a9662217e727b940ef896bf6 (patch)
tree94d427a86793569de3f589d6770bd8821b820b57 /module/p11-capi.h
parenta414a5af4b26f039ad7b0a592aca12d2b14b1654 (diff)
Fix copious amounts of debugging messages. Add concept of warning messages.
Diffstat (limited to 'module/p11-capi.h')
-rw-r--r--module/p11-capi.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/module/p11-capi.h b/module/p11-capi.h
index e522bfa..d672b69 100644
--- a/module/p11-capi.h
+++ b/module/p11-capi.h
@@ -66,9 +66,15 @@ typedef struct _P11cSession P11cSession;
* Module helper and logging functions.
*/
-#define DBG(args) p11c_debug args
+#if DBG_OUTPUT
+#define DBG(args) p11c_log args
+#else
+#define DBG(args)
+#endif
+
+#define WARN(args) p11c_log args
-void p11c_debug (const char* msg, ...);
+void p11c_log (const char* msg, ...);
/*
* Protect global data with these.