diff options
author | Max Kellermann <max@duempel.org> | 2009-03-01 10:39:42 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-03-01 10:39:42 +0100 |
commit | 614fe8b341a68aa06d1d5259475147a0afde163f (patch) | |
tree | 04c31395932459ae4a79f69587c3488036c23b3e /src/output/oss_plugin.c | |
parent | e1b79479a53aaff6d49d65d7ad3689792343a442 (diff) | |
download | mpd-614fe8b341a68aa06d1d5259475147a0afde163f.tar.gz mpd-614fe8b341a68aa06d1d5259475147a0afde163f.tar.xz mpd-614fe8b341a68aa06d1d5259475147a0afde163f.zip |
output: removed duplicate debug messages from plugins
The MPD core logs the audio format of all audio outputs. Remove the
duplicate message from the plugins.
Diffstat (limited to 'src/output/oss_plugin.c')
-rw-r--r-- | src/output/oss_plugin.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/output/oss_plugin.c b/src/output/oss_plugin.c index d4ecf88f7..2921442eb 100644 --- a/src/output/oss_plugin.c +++ b/src/output/oss_plugin.c @@ -563,11 +563,6 @@ oss_output_open(void *data, struct audio_format *audio_format, GError **error) *audio_format = od->audio_format; - g_debug("device \"%s\" will be playing %u bit %u channel audio at " - "%u Hz\n", od->device, - od->audio_format.bits, od->audio_format.channels, - od->audio_format.sample_rate); - mixer_open(od->mixer); return ret; |