diff options
author | Max Kellermann <max@musicpd.org> | 2019-03-29 17:15:43 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-03-29 17:15:48 +0100 |
commit | 2e9f3d8b9fb873446f6e39a917e83cb763c92781 (patch) | |
tree | 4b7cd9324e7d93a0b7ecb19ebdeea92d297a8b5f | |
parent | 976731ab6cc88b88a71179f9ed4b27cbdc3c54da (diff) |
decoder/HybridDSD: downgrade log message to "debug"
This plugin is interesting only for a tiny fraction of MPD users, so
let's not spam everybody else's log with it.
-rw-r--r-- | src/decoder/plugins/HybridDsdDecoderPlugin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/decoder/plugins/HybridDsdDecoderPlugin.cxx b/src/decoder/plugins/HybridDsdDecoderPlugin.cxx index 9ff8802e4..3b46de0f1 100644 --- a/src/decoder/plugins/HybridDsdDecoderPlugin.cxx +++ b/src/decoder/plugins/HybridDsdDecoderPlugin.cxx @@ -39,8 +39,8 @@ InitHybridDsdDecoder(const ConfigBlock &block) without a DSD DAC, the PCM (=ALAC) part of the file is better */ if (block.GetBlockParam("enabled") == nullptr) { - LogInfo(hybrid_dsd_domain, - "The Hybrid DSD decoder is disabled because it was not explicitly enabled"); + LogDebug(hybrid_dsd_domain, + "The Hybrid DSD decoder is disabled because it was not explicitly enabled"); return false; } |