Skip to content

Commit

Permalink
Add debug output to: SeratoTags::getCueInfos()
Browse files Browse the repository at this point in the history
  • Loading branch information
daschuer committed Apr 29, 2023
1 parent 55f002e commit 7d78557
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/track/serato/tags.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,14 @@ QList<CueInfo> SeratoTags::getCueInfos() const {
hotCueMap.insert(*loopCueInfo.getHotCueIndex(), loopCueInfo);
}
}
return hotCueMap.values();

const QList<CueInfo> cueInfos = hotCueMap.values();
qDebug() << "SeratoTags::getCueInfos()";
for (const CueInfo& cueInfo : cueInfos) {
qDebug() << cueInfo;
}

return cueInfos;
}

void SeratoTags::setCueInfos(const QList<CueInfo>& cueInfos, double timingOffsetMillis) {
Expand Down

0 comments on commit 7d78557

Please sign in to comment.