summaryrefslogtreecommitdiffstats
path: root/src/DownloadManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DownloadManager.cpp')
-rw-r--r--src/DownloadManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DownloadManager.cpp b/src/DownloadManager.cpp
index 2b1cc8a..eec6909 100644
--- a/src/DownloadManager.cpp
+++ b/src/DownloadManager.cpp
@@ -128,9 +128,9 @@ DownloadManager::DownloadManager()
downloadDir = QDir(downloadPath);
// Check if downloadPath exists, if not create it.
if (!downloadDir.exists()){
- if (debug) qDebug() << downloadDir.path() << "doesn't exist.";
+ if (debug) qDebug() << "Download directory: " << downloadDir.path() << "doesn't exist.";
QDir::current().mkdir(downloadPath);
if (downloadDir.exists() && debug) qDebug() << "Created download directory: " << downloadPath;
}
- else if (debug) qDebug() << downloadDir.path() << "exists.";
+ else if (debug) qDebug() << "Download directory: " << downloadDir.path() << "exists.";
}