1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2025-01-30 09:05:04 +01:00

CollectionModel: Minor change in debug log

This commit is contained in:
Jonas Kvinge 2024-07-02 17:53:14 +02:00
parent c5eb72fa9f
commit e1b4585dc7

View File

@ -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;
}
}