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 155c7dfbde713a244a68707c680d117660eb9c0d
parent a7e1d1d22aa5576207358bbdff37ccb1127ff461
Author: Joris Vink <joris@coders.se>
Date:   Wed,  3 Nov 2021 17:22:53 +0100

prefix fatal messages with FATAL

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

diff --git a/src/utils.c b/src/utils.c @@ -651,7 +651,7 @@ fatal_log(const char *fmt, va_list args) char buf[2048]; (void)vsnprintf(buf, sizeof(buf), fmt, args); - kore_log(LOG_ERR, "%s", buf); + kore_log(LOG_ERR, "FATAL: %s", buf); if (worker != NULL && worker->id == KORE_WORKER_KEYMGR) kore_keymgr_cleanup(1);