From 7295733087cfb8e14a63b0ad434dad8eba401f58 Mon Sep 17 00:00:00 2001 From: Avril Date: Mon, 12 Jul 2021 17:51:15 +0100 Subject: [PATCH] Up default logging level on release builds to `INFO` (from `WARN`). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fortune for naka's current commit: Curse − 凶 --- include/trace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/trace.h b/include/trace.h index 08c1eec..d511c9a 100644 --- a/include/trace.h +++ b/include/trace.h @@ -18,7 +18,7 @@ enum trace_level { #ifdef DEBUG #define _TRACE_LEVEL_DEFAULT TRACE_LEVEL_DEBUG #else -#define _TRACE_LEVEL_DEFAULT TRACE_LEVEL_WARN +#define _TRACE_LEVEL_DEFAULT TRACE_LEVEL_INFO #endif int _t_fprintf(enum trace_level l, FILE* output, const char* msg, ...);