[PATCHv2 3/5] Change default log level
From: Laura Abbott <hidden>
Date: 2015-09-28 22:39:19
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Laura Abbott <hidden>
Date: 2015-09-28 22:39:19
Subsystem:
the rest · Maintainer:
Linus Torvalds
The default log level is currently LOG_ERR. Tools can override this default but there is a non-trivial amount of setup that needs to happen before the log level can be changed. Since tools may want to use the warn level for things such as deprecated flags, change the default to LOG_WARNING to ensure messages get printed. --- tools/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/log.c b/tools/log.c
index e29a150..3317a35 100644
--- a/tools/log.c
+++ b/tools/log.c@@ -29,7 +29,7 @@ #define PRIO_MAX_SIZE 32 static bool log_use_syslog; -static int log_priority = LOG_ERR; +static int log_priority = LOG_WARNING; static const char *prio_to_str(char buf[static PRIO_MAX_SIZE], int prio) {
--
2.4.3