From 52ac3d0593d48363b318940987bd3220f5735b2c Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 17 Dec 2023 13:28:57 -0500 Subject: [PATCH] Fix unnamespaced qDebug --- launcher/src/account.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/account.cpp b/launcher/src/account.cpp index c41489b..41557f0 100644 --- a/launcher/src/account.cpp +++ b/launcher/src/account.cpp @@ -228,7 +228,7 @@ void Account::fetchAvatar() const QString filename = QStringLiteral("%1/%2.jpg").arg(cacheLocation, lodestoneId()); 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; url.setScheme(m_launcher.settings()->preferredProtocol());