From 84ee01dbe92645e908540871357c7185f767c519 Mon Sep 17 00:00:00 2001 From: Jeff Lucovsky Date: Sat, 11 Sep 2021 09:03:33 -0400 Subject: [PATCH] util/log: Include device name with thread count --- src/util-runmodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util-runmodes.c b/src/util-runmodes.c index 10f5bd94d3..2e1042bf18 100644 --- a/src/util-runmodes.c +++ b/src/util-runmodes.c @@ -260,7 +260,7 @@ static int RunModeSetLiveCaptureWorkersForDevice(ConfigIfaceThreadsCountFunc Mod threads_count = 1; } else { threads_count = MIN(ModThreadsCount(aconf), thread_max); - SCLogInfo("Going to use %" PRId32 " thread(s)", threads_count); + SCLogInfo("Going to use %" PRId32 " thread(s) for device %s", threads_count, live_dev); } /* create the threads */