From 71855e87e31b257440c56d96b33a936c06912ed0 Mon Sep 17 00:00:00 2001 From: default Date: Sun, 11 Jun 2023 19:49:56 +0200 Subject: [PATCH] If ~/error/ exists, also log messages to a file there. --- snac.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/snac.c b/snac.c index 691c2e2..41e1984 100644 --- a/snac.c +++ b/snac.c @@ -94,6 +94,14 @@ void srv_debug(int level, xs_str *str) if (dbglevel >= level) { xs *tm = xs_str_localtime(0, "%H:%M:%S"); fprintf(stderr, "%s %s\n", tm, str); + + /* if the ~/error/ folder exists, also write to a file there */ + xs *lf = xs_fmt("%s/error/debug.log", srv_basedir); + FILE *f; + if ((f = fopen(lf, "a")) != NULL) { + fprintf(f, "%s %s\n", tm, str); + fclose(f); + } } xs_free(str);