From: Jeff Lucovsky Date: Sat, 11 Sep 2021 13:03:33 +0000 (-0400) Subject: util/log: Include device name with thread count X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=84ee01dbe92645e908540871357c7185f767c519;p=people%2Fms%2Fsuricata.git util/log: Include device name with thread count --- diff --git a/src/util-runmodes.c b/src/util-runmodes.c index 10f5bd94d..2e1042bf1 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 */