summaryrefslogtreecommitdiff
path: root/module/p11-capi.h
diff options
context:
space:
mode:
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.