mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-21 01:42:15 -07:00
Adjust debug statements to be in line with existing ones.
This commit is contained in:
parent
44a2b4e54b
commit
fb9e7c536f
1 changed files with 6 additions and 3 deletions
|
|
@ -459,7 +459,9 @@ QNetworkReply *PictureLoaderWorker::makeRequest(const QUrl &url)
|
||||||
// Check if the redirect is cached
|
// Check if the redirect is cached
|
||||||
QUrl cachedRedirect = getCachedRedirect(url);
|
QUrl cachedRedirect = getCachedRedirect(url);
|
||||||
if (!cachedRedirect.isEmpty()) {
|
if (!cachedRedirect.isEmpty()) {
|
||||||
qDebug() << "Using cached redirect for" << url << "to" << cachedRedirect;
|
qDebug().nospace() << "PictureLoader: [card: " << cardBeingDownloaded.getCard()->getCorrectedName()
|
||||||
|
<< " set: " << cardBeingDownloaded.getSetName() << "]: Using cached redirect for "
|
||||||
|
<< url.toDisplayString() << " to " << cachedRedirect.toDisplayString();
|
||||||
return makeRequest(cachedRedirect); // Use the cached redirect
|
return makeRequest(cachedRedirect); // Use the cached redirect
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -481,7 +483,9 @@ QNetworkReply *PictureLoaderWorker::makeRequest(const QUrl &url)
|
||||||
}
|
}
|
||||||
|
|
||||||
cacheRedirect(url, redirectUrl);
|
cacheRedirect(url, redirectUrl);
|
||||||
qDebug() << "Caching redirect from" << url << "to" << redirectUrl;
|
qDebug().nospace() << "PictureLoader: [card: " << cardBeingDownloaded.getCard()->getCorrectedName()
|
||||||
|
<< " set: " << cardBeingDownloaded.getSetName() << "]: Caching redirect from "
|
||||||
|
<< url.toDisplayString() << " to " << redirectUrl.toDisplayString();
|
||||||
}
|
}
|
||||||
|
|
||||||
reply->deleteLater();
|
reply->deleteLater();
|
||||||
|
|
@ -525,7 +529,6 @@ void PictureLoaderWorker::loadRedirectCache()
|
||||||
|
|
||||||
void PictureLoaderWorker::saveRedirectCache() const
|
void PictureLoaderWorker::saveRedirectCache() const
|
||||||
{
|
{
|
||||||
qDebug() << "Saving redirect cache";
|
|
||||||
QSettings settings(cacheFilePath, QSettings::IniFormat);
|
QSettings settings(cacheFilePath, QSettings::IniFormat);
|
||||||
|
|
||||||
settings.beginWriteArray("redirects", redirectCache.size());
|
settings.beginWriteArray("redirects", redirectCache.size());
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue