chore: cleanup some debug messages

This commit is contained in:
Joshua Strobl 2024-10-02 18:21:56 +03:00
parent c52386abb4
commit adf12cb1fc
2 changed files with 0 additions and 3 deletions

View file

@ -20,8 +20,6 @@ void FileIndexer::index() {
QDirIterator it {this->i_root, QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot, QDirIterator::Subdirectories};
// std::cout << "Indexing " << this->i_root.toStdString();
while (it.hasNext()) {
QString path = it.next();
QFileInfo info {path};

View file

@ -45,7 +45,6 @@ KotoTrack* KotoTrack::fromMetadata(const KFileMetaData::SimpleExtractionResult&
auto albumResult = props.value(KFileMetaData::Property::Album);
if (albumResult.isValid() && artistOptional.has_value()) {
auto artist = artistOptional.value();
std::cout << "Album: " << albumResult.toString().toStdString() << std::endl;
auto albumMetaName = albumResult.toString();
auto albumOptional = artist->getAlbumByName(albumMetaName);