Remove debug output. (#2315)

This commit is contained in:
karliss 2020-07-22 12:57:26 +03:00 committed by GitHub
parent d3e5245441
commit a0eb9e3fa9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,6 @@ QStringList Cutter::locateAll(QStandardPaths::StandardLocation type, const QStri
for (auto path : standardLocations(type)) {
QString filePath = path + QLatin1Char('/') + fileName;
bool exists = false;
qDebug() << "checking " << filePath;
if (options & QStandardPaths::LocateDirectory) {
exists = QDir(filePath).exists();
} else {