diff options
Diffstat (limited to 'src/Stats.cxx')
-rw-r--r-- | src/Stats.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Stats.cxx b/src/Stats.cxx index 0f9703674..de7091ddc 100644 --- a/src/Stats.cxx +++ b/src/Stats.cxx @@ -30,6 +30,7 @@ extern "C" { #include "DatabasePlugin.hxx" #include "DatabaseSimple.hxx" #include "util/Error.hxx" +#include "Log.hxx" struct stats stats; @@ -56,7 +57,7 @@ void stats_update(void) stats.artist_count = stats2.artist_count; stats.album_count = stats2.album_count; } else { - g_warning("%s", error.GetMessage()); + LogError(error); stats.song_count = 0; stats.song_duration = 0; |