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/alsa_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/alsa_plugin.c')
-rw-r--r-- | src/output/alsa_plugin.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/output/alsa_plugin.c b/src/output/alsa_plugin.c index 874e4ac93..b3f20df42 100644 --- a/src/output/alsa_plugin.c +++ b/src/output/alsa_plugin.c @@ -408,10 +408,6 @@ alsa_open(void *data, struct audio_format *audio_format, GError **error) ad->frame_size = audio_format_frame_size(audio_format); - g_debug("ALSA device \"%s\" will be playing %i bit, %u channel audio at %u Hz\n", - alsa_device(ad), audio_format->bits, audio_format->channels, - audio_format->sample_rate); - return true; } |