From 814d2fa9fc593678eeff1b0e141ef5388a9767df Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Tue, 12 Oct 2021 22:57:59 +0200 Subject: [PATCH] MainWindow: Use Song::PrettyTitle() in debug message --- src/core/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/mainwindow.cpp b/src/core/mainwindow.cpp index e5f7115fb..1169134ce 100644 --- a/src/core/mainwindow.cpp +++ b/src/core/mainwindow.cpp @@ -1340,7 +1340,7 @@ void MainWindow::VolumeChanged(const int volume) { void MainWindow::SongChanged(const Song &song) { - qLog(Debug) << "Song changed to" << song.artist() << song.album() << song.title(); + qLog(Debug) << "Song changed to" << song.artist() << song.album() << song.PrettyTitle(); song_playing_ = song; song_ = song;