mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-18 03:15:34 +08:00
Cleaner setup load messages
This commit is contained in:
@@ -258,7 +258,7 @@ namespace BlackCore
|
|||||||
if (!m_lastSuccessfulSetupUrl.isEmpty())
|
if (!m_lastSuccessfulSetupUrl.isEmpty())
|
||||||
{
|
{
|
||||||
// already read
|
// already read
|
||||||
CLogMessage(this).info("Cancel second bootstrap read, as there was a 1st read: " + url.toQString());
|
CLogMessage(this).info("Cancel second bootstrap read ('%1'), as there was a 1st read: '%2'") << url.toQString() << m_lastSuccessfulSetupUrl;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
sApp->getFromNetwork(url.toNetworkRequest(), { this, &CSetupReader::parseBootstrapFile });
|
sApp->getFromNetwork(url.toNetworkRequest(), { this, &CSetupReader::parseBootstrapFile });
|
||||||
@@ -304,7 +304,7 @@ namespace BlackCore
|
|||||||
if (!m_lastSuccessfulUpdateInfoUrl.isEmpty())
|
if (!m_lastSuccessfulUpdateInfoUrl.isEmpty())
|
||||||
{
|
{
|
||||||
// already read
|
// already read
|
||||||
CLogMessage(this).info("Cancel second update info read, as there was a 1st read: " + url.toQString());
|
CLogMessage(this).info("Cancel second update info read ('%1'), as there was a 1st read '%2'") << url.toQString() << m_lastSuccessfulUpdateInfoUrl;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
sApp->getFromNetwork(url.toNetworkRequest(), { this, &CSetupReader::parseUpdateInfoFile });
|
sApp->getFromNetwork(url.toNetworkRequest(), { this, &CSetupReader::parseUpdateInfoFile });
|
||||||
|
|||||||
Reference in New Issue
Block a user