summaryrefslogtreecommitdiff
path: root/src/LogBackend.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-05-23 14:13:38 +0200
committerMax Kellermann <max@musicpd.org>2019-05-23 14:14:58 +0200
commit3d2b180cf8d07c30a9363ddacf89c7cbf256fdf1 (patch)
treec1052209f9f7c4e0f2912b93472d7ff98a55356c /src/LogBackend.cxx
parentf9879477305359414fb55a71f517d778a7d1856e (diff)
LogBackend: set default log level to "default"
This is the documented value, but for unknown reasons, "info" was really the default. This was never noticed because there are only very few "info" level messages.
Diffstat (limited to 'src/LogBackend.cxx')
-rw-r--r--src/LogBackend.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LogBackend.cxx b/src/LogBackend.cxx
index f7760ee23..676ecf3cb 100644
--- a/src/LogBackend.cxx
+++ b/src/LogBackend.cxx
@@ -61,7 +61,7 @@ ToAndroidLogLevel(LogLevel log_level) noexcept
#else
-static LogLevel log_threshold = LogLevel::INFO;
+static LogLevel log_threshold = LogLevel::DEFAULT;
static bool enable_timestamp;