summaryrefslogtreecommitdiff
path: root/src/log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.h')
-rw-r--r--src/log.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/log.h b/src/log.h
index 7028a13275..cf9f7fa569 100644
--- a/src/log.h
+++ b/src/log.h
@@ -24,6 +24,7 @@
#include <syslog.h>
#include <stdbool.h>
+#include <stdarg.h>
#include "macro.h"
@@ -73,6 +74,14 @@ int log_meta(
const char *func,
const char *format, ...) _printf_attr_(5,6);
+int log_metav(
+ int level,
+ const char*file,
+ int line,
+ const char *func,
+ const char *format,
+ va_list ap);
+
_noreturn_ void log_assert_failed(const char *text, const char *file, int line, const char *func);
_noreturn_ void log_assert_failed_unreachable(const char *text, const char *file, int line, const char *func);