diff --git a/launcher/src/launchercore.cpp b/launcher/src/launchercore.cpp index 0cbc3d8..33100dc 100755 --- a/launcher/src/launchercore.cpp +++ b/launcher/src/launchercore.cpp @@ -339,10 +339,14 @@ void LauncherCore::addRegistryKey(const Profile &settings, QString key, QString void LauncherCore::login(Profile *profile, const QString &username, const QString &password, const QString &oneTimePassword) { + qDebug() << "Logging in, performing asset update check."; + auto assetUpdater = new AssetUpdater(*profile, *this, this); assetUpdater->update(); connect(assetUpdater, &AssetUpdater::finishedUpdating, this, [this, assetUpdater, profile, username, password, oneTimePassword] { + qDebug() << "Assets done updating!"; + auto loginInformation = new LoginInformation(this); loginInformation->profile = profile; loginInformation->username = username; diff --git a/launcher/src/squareboot.cpp b/launcher/src/squareboot.cpp index 9a433c9..bbfdf15 100644 --- a/launcher/src/squareboot.cpp +++ b/launcher/src/squareboot.cpp @@ -21,6 +21,7 @@ SquareBoot::SquareBoot(LauncherCore &window, SquareLauncher &launcher, QObject * void SquareBoot::bootCheck(const LoginInformation &info) { Q_EMIT window.stageChanged(i18n("Checking for launcher updates...")); + qDebug() << "Performing boot check..."; patcher = new Patcher(window, info.profile->gamePath() + "/boot", info.profile->bootData, this); connect(patcher, &Patcher::done, [this, &info] { @@ -58,6 +59,7 @@ void SquareBoot::bootCheck(const LoginInformation &info) void SquareBoot::checkGateStatus(LoginInformation *info) { Q_EMIT window.stageChanged(i18n("Checking gate...")); + qDebug() << "Checking gate..."; QUrl url("https://frontier.ffxiv.com/worldStatus/gate_status.json"); url.setQuery(QString::number(QDateTime::currentMSecsSinceEpoch()));