From 2164f7bf58feacdedce61c5b5790980b533ae5bf Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Fri, 18 Feb 2022 11:10:11 +0000 Subject: fib: Use the VLIB logger for adjacency debugging Type: improvement remove the [un]lock logs, they are not useful. Signed-off-by: Neale Ranns Change-Id: I903d3088b8ed9831f931208aeb6b6862a945550c --- src/vnet/adj/adj_internal.h | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'src/vnet/adj/adj_internal.h') diff --git a/src/vnet/adj/adj_internal.h b/src/vnet/adj/adj_internal.h index 6842bc4147e..380af46e22a 100644 --- a/src/vnet/adj/adj_internal.h +++ b/src/vnet/adj/adj_internal.h @@ -31,16 +31,13 @@ /* * Debug macro */ -#ifdef ADJ_DEBUG -#define ADJ_DBG(_adj, _fmt, _args...) \ -{ \ - clib_warning("adj:[%d:%p]:" _fmt, \ - _adj - adj_pool, _adj, \ - ##_args); \ +extern vlib_log_class_t adj_logger; +#define ADJ_DBG(_adj, _fmt, _args...) \ +{ \ + vlib_log_debug(adj_logger, "adj:[%d:%p]:" _fmt, \ + _adj - adj_pool, _adj, \ + ##_args); \ } -#else -#define ADJ_DBG(_e, _fmt, _args...) -#endif /* * Vlib nodes -- cgit 1.2.3-korg