From af33d64fb1fb53f13ef5fbe1f7df6c6935c2d7b4 Mon Sep 17 00:00:00 2001 From: Bogdan-Andrei Iancu Date: Wed, 16 Aug 2023 16:47:57 +0300 Subject: [PATCH] Switch default xlog level from ERR to NOTICE ERR is too scary for a default value :) (cherry picked from commit c290071682fad30323aa36c0d3b64281b4edd2e5) --- xlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xlog.c b/xlog.c index 27897862e70..58b4d71ed67 100644 --- a/xlog.c +++ b/xlog.c @@ -49,7 +49,7 @@ int xlog_buf_size = 4096; int xlog_force_color = 0; /* the log level used when printing xlog messages */ -int xlog_print_level = L_ERR; +int xlog_print_level = L_NOTICE; /* the logging level/threshold for filtering the xlog messages for printing */ static int xlog_level_default = L_NOTICE;