kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 21839aeaa2fa372a6790a8b01ad6e22f6b8dd671
parent d49d65dfa03cfb8dce8be37121f20c5ea949a0eb
Author: Joris Vink <joris@coders.se>
Date:   Wed,  8 Mar 2023 20:30:34 +0100

demote sched_setaffinity log message to a notice.

Diffstat:
src/linux.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/linux.c b/src/linux.c @@ -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