mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-22 14:55:36 +08:00
Cleaner setup load messages
This commit is contained in:
@@ -258,7 +258,7 @@ namespace BlackCore
|
||||
if (!m_lastSuccessfulSetupUrl.isEmpty())
|
||||
{
|
||||
// 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;
|
||||
}
|
||||
sApp->getFromNetwork(url.toNetworkRequest(), { this, &CSetupReader::parseBootstrapFile });
|
||||
@@ -304,7 +304,7 @@ namespace BlackCore
|
||||
if (!m_lastSuccessfulUpdateInfoUrl.isEmpty())
|
||||
{
|
||||
// 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;
|
||||
}
|
||||
sApp->getFromNetwork(url.toNetworkRequest(), { this, &CSetupReader::parseUpdateInfoFile });
|
||||
|
||||
Reference in New Issue
Block a user