From b2ba17f6f13702a2ef230df305e5a68f418d15a6 Mon Sep 17 00:00:00 2001 From: Adam Treat Date: Tue, 25 Apr 2023 16:31:26 -0400 Subject: [PATCH] Omit the debug stmt --- download.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/download.cpp b/download.cpp index 0663a4ab..0fb1d2e3 100644 --- a/download.cpp +++ b/download.cpp @@ -56,7 +56,6 @@ void Download::setDownloadLocalModelsPath(const QString &modelPath) { QString filePath = (modelPath.startsWith("file://") ? QUrl(modelPath).toLocalFile() : modelPath); QString canonical = QFileInfo(filePath).canonicalFilePath() + QDir::separator(); - qDebug() << "Set model path: " << canonical; if (m_downloadLocalModelsPath != canonical) { m_downloadLocalModelsPath = canonical; emit downloadLocalModelsPathChanged();