forked from qt-creator/qt-creator
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:
@@ -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();
|
||||||
|
Reference in New Issue
Block a user