From b6656786caa1b5247e251e63d15f3173bcf3d26f Mon Sep 17 00:00:00 2001 From: pommicket Date: Tue, 25 Feb 2025 15:15:10 -0500 Subject: logging --- log.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'log.h') diff --git a/log.h b/log.h index b739837..ee638de 100644 --- a/log.h +++ b/log.h @@ -12,5 +12,7 @@ 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); +/// Like `perror`, but outputs to log and allows format string. +void log_perror(PRINTF_FORMAT_STRING const char *fmt, ...) ATTRIBUTE_PRINTF(1, 2); #endif -- cgit v1.2.3