Commit de0f46b9 authored by Dan McGee's avatar Dan McGee Committed by Max Kellermann

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: 's avatarDan McGee <dan@archlinux.org>
parent 79eb7623
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment