From de0f46b947c6016bb72379527ea7af75190b5c4b Mon Sep 17 00:00:00 2001
From: Dan McGee <dan@archlinux.org>
Date: Fri, 23 Mar 2012 10:32:33 -0500
Subject: [PATCH] Use g_message and not g_debug when removing song

When adding or updating a song, we get a log message even if debug is not
enabled. It seems odd that removing a song shouldn't be done at the same log
level; otherwise looking at the log leads you to believe songs are never
removed from the library on update.

Signed-off-by: Dan McGee <dan@archlinux.org>
---
 src/update_remove.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/update_remove.c b/src/update_remove.c
index f7c2342a2..8d60be222 100644
--- a/src/update_remove.c
+++ b/src/update_remove.c
@@ -49,7 +49,7 @@ song_remove_event(void)
 	assert(removed_song != NULL);
 
 	uri = song_get_uri(removed_song);
-	g_debug("removing: %s", uri);
+	g_message("removing %s", uri);
 	g_free(uri);
 
 #ifdef ENABLE_SQLITE