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:
parent
b8f3cb0430
commit
52ac3d0593
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||||
|
|
Loading…
Add table
Reference in a new issue