demote sched_setaffinity log message to a notice.

This commit is contained in:
Joris Vink 2023-03-08 20:30:34 +01:00
parent d49d65dfa0
commit 21839aeaa2
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ kore_platform_worker_setcpu(struct kore_worker *kw)
CPU_SET(kw->cpu, &cpuset);
if (sched_setaffinity(0, sizeof(cpu_set_t), &cpuset) == -1)
kore_log(LOG_WARNING, "kore_worker_setcpu(): %s", errno_s);
kore_log(LOG_NOTICE, "kore_worker_setcpu(): %s", errno_s);
}
void