From 14abcc04fd3659f4927967c256218b8a1cd0151d Mon Sep 17 00:00:00 2001 From: lukasmittag Date: Tue, 5 Nov 2024 13:53:07 +0100 Subject: [PATCH] Add info message how many cores are used --- databroker/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/databroker/src/main.rs b/databroker/src/main.rs index ae536afd..ece1e995 100644 --- a/databroker/src/main.rs +++ b/databroker/src/main.rs @@ -345,6 +345,7 @@ fn main() -> Result<(), Box> { databroker::init_logging(); info!("Starting Kuksa Databroker {}", version); + info!("Using {} threads with {} cores available on the system", worker_threads, cores); let ip_addr = args.get_one::("address").unwrap().parse()?; let port = args