]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
util/log: Include device name with thread count
authorJeff Lucovsky <jeff@lucovsky.org>
Sat, 11 Sep 2021 13:03:33 +0000 (09:03 -0400)
committerVictor Julien <vjulien@oisf.net>
Mon, 22 Nov 2021 10:32:55 +0000 (11:32 +0100)
src/util-runmodes.c

index 10f5bd94d365239635a9d7cb9374e508184d9d76..2e1042bf18c6844bf6de30211a23877929c5eb5b 100644 (file)
@@ -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 */