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/jack_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/jack_plugin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/output/jack_plugin.c b/src/output/jack_plugin.c index 6b3dd9d03..16f592dc5 100644 --- a/src/output/jack_plugin.c +++ b/src/output/jack_plugin.c @@ -144,7 +144,6 @@ static void set_audioformat(struct jack_data *jd, struct audio_format *audio_format) { audio_format->sample_rate = jack_get_sample_rate(jd->client); - g_debug("samplerate = %u", audio_format->sample_rate); audio_format->channels = 2; if (audio_format->bits != 16 && audio_format->bits != 24) |