chiark / gitweb /
add minimal logging framework
authorLennart Poettering <lennart@poettering.net>
Wed, 20 Jan 2010 18:18:52 +0000 (19:18 +0100)
committerLennart Poettering <lennart@poettering.net>
Wed, 20 Jan 2010 18:18:52 +0000 (19:18 +0100)
Makefile
log.c [new file with mode: 0644]
log.h [new file with mode: 0644]

index cc55d4d149067cf06e7ecee5a42250323fd0e4e2..f4bbb2aef59188d7de1b017bc2a77c9b5cd3f042 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 CFLAGS=-Wall -Wextra -O0 -g -pipe -D_GNU_SOURCE -fdiagnostics-show-option -Wno-unused-parameter
 LIBS=-lrt
 
 CFLAGS=-Wall -Wextra -O0 -g -pipe -D_GNU_SOURCE -fdiagnostics-show-option -Wno-unused-parameter
 LIBS=-lrt
 
-COMMON=name.o util.o set.o hashmap.o strv.o job.o manager.o conf-parser.o load-fragment.o socket-util.c
+COMMON=name.o util.o set.o hashmap.o strv.o job.o manager.o conf-parser.o load-fragment.o socket-util.o log.o
 
 all: systemd test-engine
 
 
 all: systemd test-engine
 
diff --git a/log.c b/log.c
new file mode 100644 (file)
index 0000000..8d29213
--- /dev/null
+++ b/log.c
@@ -0,0 +1,38 @@
+/*-*- Mode: C; c-basic-offset: 8 -*-*/
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdarg.h>
+#include <stdio.h>
+
+#include "log.h"
+
+void log_meta(
+        int level,
+        const char*file,
+        int line,
+        const char *func,
+        const char *format, ...) {
+
+        const char *prefix, *suffix;
+        va_list ap;
+
+        if (LOG_PRI(level) <= LOG_ERR) {
+                prefix = "\x1B[1;31m";
+                suffix = "\x1B[0m";
+        } else {
+                prefix = "";
+                suffix = "";
+        }
+
+        va_start(ap, format);
+
+        fprintf(stderr, "(%s:%u) %s", file, line, prefix);
+        vfprintf(stderr, format, ap);
+        fprintf(stderr, "%s\n", suffix);
+
+        va_end(ap);
+
+}
diff --git a/log.h b/log.h
new file mode 100644 (file)
index 0000000..628f5b8
--- /dev/null
+++ b/log.h
@@ -0,0 +1,23 @@
+/*-*- Mode: C; c-basic-offset: 8 -*-*/
+
+#ifndef foologhfoo
+#define foologhfoo
+
+#include <syslog.h>
+
+#include "macro.h"
+
+void log_meta(
+        int level,
+        const char*file,
+        int line,
+        const char *func,
+        const char *format, ...) __printf_attr(5,6);
+
+#define log_debug(...)   log_meta(LOG_DEBUG,   __FILE__, __LINE__, __func__, __VA_ARGS__)
+#define log_info(...)    log_meta(LOG_INFO,    __FILE__, __LINE__, __func__, __VA_ARGS__)
+#define log_notice(...)  log_meta(LOG_NOTICE,  __FILE__, __LINE__, __func__, __VA_ARGS__)
+#define log_warning(...) log_meta(LOG_WARNING, __FILE__, __LINE__, __func__, __VA_ARGS__)
+#define log_error(...)   log_meta(LOG_ERR,     __FILE__, __LINE__, __func__, __VA_ARGS__)
+
+#endif