StudioWelcome: Replace qDebug with qWarning

This is a warning.

Change-Id: Ife860f058c719d2245fb2cf7babf34640907bbea
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Thomas Hartmann
2022-07-20 19:37:04 +02:00
parent f4734e4e2b
commit f80099b9fd

View File

@@ -123,7 +123,7 @@ void FileDownloader::start()
if (reply->error()) { if (reply->error()) {
if (m_tempFile.exists()) if (m_tempFile.exists())
m_tempFile.remove(); m_tempFile.remove();
qDebug() << Q_FUNC_INFO << m_url << reply->errorString(); qWarning() << Q_FUNC_INFO << m_url << reply->errorString();
emit downloadFailed(); emit downloadFailed();
} else { } else {
m_tempFile.flush(); m_tempFile.flush();