1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-22 20:47:45 +00:00

Fix unnamespaced qDebug

This commit is contained in:
Joshua Goins 2023-12-17 13:28:57 -05:00
parent b8f3cb0430
commit 52ac3d0593

View file

@ -228,7 +228,7 @@ void Account::fetchAvatar()
const QString filename = QStringLiteral("%1/%2.jpg").arg(cacheLocation, lodestoneId()); const QString filename = QStringLiteral("%1/%2.jpg").arg(cacheLocation, lodestoneId());
if (!QFile(filename).exists()) { if (!QFile(filename).exists()) {
qDebug() << "Did not find lodestone character " << lodestoneId() << " in cache, fetching from xivapi."; qDebug(ASTRA_LOG) << "Did not find lodestone character " << lodestoneId() << " in cache, fetching from xivapi.";
QUrl url; QUrl url;
url.setScheme(m_launcher.settings()->preferredProtocol()); url.setScheme(m_launcher.settings()->preferredProtocol());