aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcl/vcl_debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/vcl/vcl_debug.h')
-rw-r--r--src/vcl/vcl_debug.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vcl/vcl_debug.h b/src/vcl/vcl_debug.h
index 52a3d94b63f..7b284166503 100644
--- a/src/vcl/vcl_debug.h
+++ b/src/vcl/vcl_debug.h
@@ -19,9 +19,10 @@
#include <vppinfra/elog.h>
#define VCL_ELOG 0
+#define VCL_DBG_ON 1
#define VDBG(_lvl, _fmt, _args...) \
- if (vcm->debug > _lvl) \
+ if (VCL_DBG_ON && vcm->debug > _lvl) \
clib_warning ("vcl<w%d>: " _fmt, __vcl_worker_index, ##_args)
#define foreach_vcl_dbg_evt \