ws: add some info level logging

This commit is contained in:
Joakim Frostegård 2022-07-19 23:45:15 +02:00
parent 809aa4def9
commit b79636730c
2 changed files with 8 additions and 0 deletions

View file

@ -96,6 +96,8 @@ pub fn run(config: Config) -> ::anyhow::Result<()> {
executors.push(executor);
}
::log::info!("spawned socket workers");
for i in 0..(config.swarm_workers) {
let sentinel = sentinel.clone();
let config = config.clone();
@ -129,6 +131,8 @@ pub fn run(config: Config) -> ::anyhow::Result<()> {
executors.push(executor);
}
::log::info!("spawned swarm workers");
if config.cpu_pinning.active {
set_affinity_for_util_worker(
&config.cpu_pinning,