From: Marcel Holtmann Date: Thu, 13 Aug 2009 00:41:55 +0000 (-0700) Subject: Add function for printing warnings X-Git-Tag: 2.0_alpha~3305 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e55a33d8a3902c425757724c8704e0e1c1ad5c1a;p=framework%2Fconnectivity%2Fconnman.git Add function for printing warnings --- diff --git a/include/log.h b/include/log.h index 991e019..0ed8ee2 100644 --- a/include/log.h +++ b/include/log.h @@ -34,6 +34,8 @@ extern "C" { void connman_info(const char *format, ...) __attribute__((format(printf, 1, 2))); +void connman_warn(const char *format, ...) + __attribute__((format(printf, 1, 2))); void connman_error(const char *format, ...) __attribute__((format(printf, 1, 2))); void connman_debug(const char *format, ...) diff --git a/src/log.c b/src/log.c index 1651f38..dbc3f7c 100644 --- a/src/log.c +++ b/src/log.c @@ -49,6 +49,24 @@ void connman_info(const char *format, ...) } /** + * connman_warn: + * @format: format string + * @Varargs: list of arguments + * + * Output warning messages + */ +void connman_warn(const char *format, ...) +{ + va_list ap; + + va_start(ap, format); + + vsyslog(LOG_WARNING, format, ap); + + va_end(ap); +} + +/** * connman_error: * @format: format string * @varargs: list of arguments