Hide worker logs behind kore_quiet.

This commit is contained in:
Joris Vink 2021-10-05 12:29:50 +02:00
parent 0af7258c30
commit 23b95448cc

View File

@ -146,6 +146,7 @@ kore_worker_init(void)
kw->lb.offset = 0;
}
if (!kore_quiet)
kore_log(LOG_INFO, "starting worker processes");
/* Now start all the workers. */
@ -174,6 +175,7 @@ kore_worker_init(void)
return (KORE_RESULT_ERROR);
}
if (!kore_quiet)
kore_log(LOG_INFO, "all worker processes started");
return (KORE_RESULT_OK);