From e1b4585dc71758fb3187d506105ccadfecf7aa9c Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Tue, 2 Jul 2024 17:53:14 +0200 Subject: [PATCH] CollectionModel: Minor change in debug log --- src/collection/collectionmodel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/collection/collectionmodel.cpp b/src/collection/collectionmodel.cpp index e759a9e42..dd8bafb85 100644 --- a/src/collection/collectionmodel.cpp +++ b/src/collection/collectionmodel.cpp @@ -535,12 +535,12 @@ void CollectionModel::AddReAddOrUpdateSongsInternal(const SongList &songs) { } if (container_key_changed) { - qLog(Debug) << "Container key for" << new_song.id() << new_song.PrettyTitleWithArtist() << "was changed, re-adding song."; + qLog(Debug) << "Container key for" << new_song.id() << new_song.PrettyTitleWithArtist() << "is changed, re-adding song."; songs_removed << old_song; songs_added << new_song; } else { - qLog(Debug) << "Container key for" << new_song.id() << new_song.PrettyTitleWithArtist() << "was not changed, only updating song metadata."; + qLog(Debug) << "Container key for" << new_song.id() << new_song.PrettyTitleWithArtist() << "is uchanged, only updating song metadata."; songs_updated << new_song; } }