diff --git a/src/net/common/downloaderthread.cpp b/src/net/common/downloaderthread.cpp index 2bd9e6bf..8e34b6e7 100644 --- a/src/net/common/downloaderthread.cpp +++ b/src/net/common/downloaderthread.cpp @@ -117,6 +117,8 @@ DownloaderThread::Main() } if (m_curDownloadData && !m_curDownloadData->filename.empty()) { + LOG_MSG("URL: " + m_curDownloadData->address); + LOG_MSG("File: " + filepath.file_string()); path filepath(m_curDownloadData->filename); m_downloadHelper->Init(m_curDownloadData->address, filepath.file_string()); m_downloadInProgress = true; diff --git a/src/net/common/uploaderthread.cpp b/src/net/common/uploaderthread.cpp index 88f0fe5e..80d938ea 100644 --- a/src/net/common/uploaderthread.cpp +++ b/src/net/common/uploaderthread.cpp @@ -73,9 +73,6 @@ UploaderThread::Main() if (!data.filename.empty() && data.filesize > 0) { path filepath(data.filename); - LOG_MSG("Target URL: " + data.address + filepath.leaf()); - LOG_MSG("Filename: " + filepath.file_string()); - LOG_MSG("Filesize: " << data.filesize); m_uploadHelper->Init(data.address + filepath.leaf(), filepath.file_string(), data.user, data.pwd, data.filesize); m_uploadInProgress = true; }