From ab2f6dbf9f7b7164a9810f4c80c8abf8463e42ad Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Fri, 31 Aug 2018 14:31:41 -0700 Subject: session: support multiple worker binds Allows app workers to listen on the same session endpoint. Incoming connects are spread across the workers in a round-robin fashion Change-Id: Ib5f5817230d9abc6127a85cdbdcad70d980c0f7f Signed-off-by: Florin Coras --- src/vcl/vcl_debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vcl/vcl_debug.h') diff --git a/src/vcl/vcl_debug.h b/src/vcl/vcl_debug.h index 13e6726c259..3faa45822f8 100644 --- a/src/vcl/vcl_debug.h +++ b/src/vcl/vcl_debug.h @@ -22,7 +22,7 @@ #define VDBG(_lvl, _fmt, _args...) \ if (vcm->debug > _lvl) \ - clib_warning (_fmt, ##_args) + clib_warning ("vcl: " _fmt, __vcl_worker_index, ##_args) #define foreach_vcl_dbg_evt \ _(INIT, "vcl init track") \ -- cgit 1.2.3-korg