Nicer logging

This commit is contained in:
Davide Paro 2021-02-14 20:48:08 +01:00
parent 793b9365ce
commit b89f2203e7

View File

@ -40,7 +40,7 @@ static struct {
static const char *level_strings[] = { static const char *level_strings[] = {
"DEBUG", "TRACE", "INFO", "WARN", "ERROR", "FATAL" "[[DEBUG]]", "[[TRACE]]", "[[ INFO]]", "[[ WARN]]", "[[ERROR]]", "[[FATAL]]"
}; };
@ -69,12 +69,12 @@ static void stdout_callback(log_Event *ev) {
buf[strftime(buf, sizeof(buf), "%H:%M:%S", ev->time)] = '\0'; buf[strftime(buf, sizeof(buf), "%H:%M:%S", ev->time)] = '\0';
#ifdef LOG_USE_COLOR #ifdef LOG_USE_COLOR
fprintf( fprintf(
ev->udata, "%s %s%-5s\x1b[0m \x1b[90m%s:%d:\x1b[0m ", ev->udata, "%s %s%-7s\x1b[0m \x1b[90m%s:%d:\x1b[0m ",
buf, get_level_color(ev->level), get_level_string(ev->level), buf, get_level_color(ev->level), get_level_string(ev->level),
ev->file, ev->line); ev->file, ev->line);
#else #else
fprintf( fprintf(
ev->udata, "%s %-5s %s:%d: ", ev->udata, "%s %-7s %s:%d: ",
buf, get_level_string(ev->level), ev->file, ev->line); buf, get_level_string(ev->level), ev->file, ev->line);
#endif #endif
vfprintf(ev->udata, ev->fmt, ev->ap); vfprintf(ev->udata, ev->fmt, ev->ap);
@ -87,7 +87,7 @@ static void file_callback(log_Event *ev) {
char buf[64]; char buf[64];
buf[strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", ev->time)] = '\0'; buf[strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", ev->time)] = '\0';
fprintf( fprintf(
ev->udata, "%s %-5s %s:%d: ", ev->udata, "%s %-7s %s:%d: ",
buf, get_level_string(ev->level), ev->file, ev->line); buf, get_level_string(ev->level), ev->file, ev->line);
vfprintf(ev->udata, ev->fmt, ev->ap); vfprintf(ev->udata, ev->fmt, ev->ap);
fprintf(ev->udata, "\n"); fprintf(ev->udata, "\n");