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/pulse_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 '')
-rw-r--r-- | src/output/pulse_plugin.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/output/pulse_plugin.c b/src/output/pulse_plugin.c index dcdd427db..a03275a22 100644 --- a/src/output/pulse_plugin.c +++ b/src/output/pulse_plugin.c @@ -132,12 +132,6 @@ pulse_open(void *data, struct audio_format *audio_format, GError **error_r) return false; } - g_debug("PulseAudio output \"%s\" connected and playing %i bit, %i " - "channel audio at %i Hz\n", - pd->name, - audio_format->bits, - audio_format->channels, audio_format->sample_rate); - return true; } |