aboutsummaryrefslogtreecommitdiff
path: root/src/log.c
diff options
context:
space:
mode:
authorMarvin Borner2023-05-17 00:19:14 +0200
committerMarvin Borner2023-05-17 00:24:37 +0200
commitf640ceee89836b56ac95c4eb1b0a43d1171c3354 (patch)
tree9deab5538634c983794a78e04b8e2cd5255711ab /src/log.c
parentae597603952e3e329eecc25512606a7fa85ea0ec (diff)
General improvements
(nothing special, mainly cleanup and docs)
Diffstat (limited to 'src/log.c')
-rw-r--r--src/log.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/log.c b/src/log.c
index 06c3614..a34c8e8 100644
--- a/src/log.c
+++ b/src/log.c
@@ -14,6 +14,8 @@ void debug(const char *format, ...)
if (!debug_enabled)
return;
+ fprintf(stderr, "[DEBUG] ");
+
va_list ap;
va_start(ap, format);
vfprintf(stderr, format, ap);
@@ -27,6 +29,8 @@ void debug_enable(int enable)
void fatal(const char *format, ...)
{
+ fprintf(stderr, "[FATAL] ");
+
va_list ap;
va_start(ap, format);
vfprintf(stderr, format, ap);