diff options
author | Max Kellermann <max@duempel.org> | 2013-11-04 22:20:11 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-04 22:27:49 +0100 |
commit | ecf12a60e8f82df59b1cf1fcbab1609fb2dfd7f4 (patch) | |
tree | 2ac4cbbf24625362f49c39e7aac3f5b3a4470e32 /src/UpdateRemove.cxx | |
parent | 6de85cb047b3859f0e1b6d6db86cb735882278c8 (diff) | |
download | mpd-ecf12a60e8f82df59b1cf1fcbab1609fb2dfd7f4.tar.gz mpd-ecf12a60e8f82df59b1cf1fcbab1609fb2dfd7f4.tar.xz mpd-ecf12a60e8f82df59b1cf1fcbab1609fb2dfd7f4.zip |
Log: add level "DEFAULT"
Map LogLevel::INFO to G_LOG_LEVEL_INFO, and LogLevel::DEFAULT to
G_LOG_LEVEL_MESSAGE. Now client connect/disconnect message are only
logged on log_level "secure".
Diffstat (limited to 'src/UpdateRemove.cxx')
-rw-r--r-- | src/UpdateRemove.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/UpdateRemove.cxx b/src/UpdateRemove.cxx index b8feefc6e..f4043b2f3 100644 --- a/src/UpdateRemove.cxx +++ b/src/UpdateRemove.cxx @@ -52,7 +52,7 @@ song_remove_event(void) { const auto uri = removed_song->GetURI(); - FormatInfo(update_domain, "removing %s", uri.c_str()); + FormatDefault(update_domain, "removing %s", uri.c_str()); } #ifdef ENABLE_SQLITE |