X-Git-Url: http://wpitchoune.net/gitweb/?p=psensor-pkg-debian.git;a=blobdiff_plain;f=src%2Flib%2Flog.c;h=7b4331f5db5146d94f09b883dfff82c0f0cf9667;hp=e66ca8fbdc134b255123e57b6ad24c615f3cd0e2;hb=dcd813f21c83592155f712ff1acf450b483d8072;hpb=f055e7507526592d3a74c652f5f053701614c9c0 diff --git a/src/lib/log.c b/src/lib/log.c index e66ca8f..7b4331f 100644 --- a/src/lib/log.c +++ b/src/lib/log.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2012 jeanfi@gmail.com + * Copyright (C) 2010-2013 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -16,15 +16,21 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA */ +#define _LARGEFILE_SOURCE 1 +#include "config.h" + #include #include #define _(str) gettext(str) #include #include +#include #include +#include #include "log.h" +#include "ptime.h" static FILE *file; int log_level = LOG_WARN; @@ -51,9 +57,8 @@ void log_close() #define LOG_BUFFER 4096 static void vlogf(int lvl, const char *fmt, va_list ap) { - struct timeval tv; char buffer[1 + LOG_BUFFER]; - char *lvl_str; + char *lvl_str, *t; FILE *stdf; if (lvl > LOG_INFO && (!file || lvl > log_level)) @@ -62,9 +67,6 @@ static void vlogf(int lvl, const char *fmt, va_list ap) vsnprintf(buffer, LOG_BUFFER, fmt, ap); buffer[LOG_BUFFER] = '\0'; - if (gettimeofday(&tv, NULL) != 0) - timerclear(&tv); - switch (lvl) { case LOG_WARN: lvl_str = "[WARN]"; @@ -82,9 +84,15 @@ static void vlogf(int lvl, const char *fmt, va_list ap) lvl_str = "[??]"; } + t = get_time_str(); + if (!t) + return ; + if (file && lvl <= log_level) { - fprintf(file, "[%ld] %s %s\n", tv.tv_sec, lvl_str, buffer); + fprintf(file, "[%s] %s %s\n", t, lvl_str, buffer); fflush(file); + } else { + t = NULL; } if (lvl <= LOG_INFO) { @@ -93,8 +101,11 @@ static void vlogf(int lvl, const char *fmt, va_list ap) else stdf = stdout; - fprintf(stdf, "[%ld] %s %s\n", tv.tv_sec, lvl_str, buffer); + + fprintf(stdf, "[%s] %s %s\n", t, lvl_str, buffer); } + + free(t); } void log_printf(int lvl, const char *fmt, ...) @@ -117,3 +128,30 @@ void log_debug(const char *fmt, ...) vlogf(LOG_DEBUG, fmt, ap); va_end(ap); } + +void log_err(const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + vlogf(LOG_ERR, fmt, ap); + va_end(ap); +} + +void log_warn(const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + vlogf(LOG_WARN, fmt, ap); + va_end(ap); +} + +void log_info(const char *fmt, ...) +{ + va_list ap; + + va_start(ap, fmt); + vlogf(LOG_INFO, fmt, ap); + va_end(ap); +}