summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--macros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros.h b/macros.h
index 19e9c80..896193c 100644
--- a/macros.h
+++ b/macros.h
@@ -9,7 +9,7 @@
#ifndef LOG_H
#include "log.h"
-#define log(priority, ...) printlog(LOG_OUT_STDOUT, priority, __VA_ARGS__)
+#define log(priority, ...) printlog(LOG_OUT_STDERR, priority, __VA_ARGS__)
#define log_reason(priority, msg, ...) log(priority, msg " Reason %s", __VA_ARGS__)
#endif