chore: cleanup some debug messages
This commit is contained in:
parent
c52386abb4
commit
adf12cb1fc
2 changed files with 0 additions and 3 deletions
|
@ -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};
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue