From 5626363c05bd379047cbe102feaceb18a04a738c Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 25 Feb 2025 14:41:59 -0500 Subject: start logger --- log.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 log.h (limited to 'log.h') diff --git a/log.h b/log.h new file mode 100644 index 0000000..b739837 --- /dev/null +++ b/log.h @@ -0,0 +1,16 @@ +#ifndef LOG_H_ +#define LOG_H_ + +#include "util.h" + +enum { + LOG_WARNING = 20, + LOG_ERROR = 30, +}; + +void log_init(const char *out); +void log_message(int severity, const char *fmt, va_list args); +void log_error(PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2); +void log_warning(PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2); + +#endif -- cgit v1.2.3