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 8afaac9fde0ff91ed08831081cc41b5fc1732924
parent 681a88d535035392d82210c752d0d17e7f1cad0b
Author: Joris Vink <joris@coders.se>
Date:   Tue, 19 Mar 2019 13:42:22 +0100

log pid number of worker upon start.

Diffstat:
src/worker.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/worker.c b/src/worker.c @@ -382,7 +382,8 @@ kore_worker_entry(struct kore_worker *kw) if (!kore_quiet) { kore_log(LOG_NOTICE, - "worker %d started (cpu#%d)", kw->id, kw->cpu); + "worker %d started (cpu#%d, pid#%d)", + kw->id, kw->cpu, kw->pid); } rcall = kore_runtime_getcall("kore_worker_configure");