From 893a685819589801eec7794d2c19fc13a1c1f9d1 Mon Sep 17 00:00:00 2001 From: Qball Cow Date: Tue, 28 Jul 2009 21:08:03 +0200 Subject: [PATCH] Remove printfs --- src/plugin.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugin.c b/src/plugin.c index 8c0e6a9..f14572d 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -110,7 +110,6 @@ static void lyricsplugin_download_callback(const GEADAsyncHandler *handle, GEADS static void lyricsplugin_get_uri(GmpcPluginMetaDataIface *base, const mpd_Song *song, MetaDataType type, GmpcPluginMetaDataCallback callback, void *user_data) { - g_debug("Lyricwiki plugin api V2"); if(lyricsplugin_get_enabled(GMPC_PLUGIN_BASE(base)) && type == META_SONG_TXT && song && song->artist &&song->title) { Query *q = g_malloc0(sizeof(*q)); @@ -125,7 +124,6 @@ static void lyricsplugin_get_uri(GmpcPluginMetaDataIface *base, const mpd_Song * q->user_data = user_data; g_free(artist); g_free(title); - g_debug("Trying: '%s'", uri_path); if(gmpc_easy_async_downloader(uri_path, lyricsplugin_download_callback, q)!= NULL) { g_free(uri_path); -- 2.11.4.GIT