mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 15:38:00 +02:00
also log metaverse session ID during ctor of AccountManager
This commit is contained in:
parent
3d98f1b3ee
commit
06b3ecfdc3
1 changed files with 3 additions and 1 deletions
|
@ -90,6 +90,8 @@ AccountManager::AccountManager(UserAgentGetter userAgentGetter) :
|
||||||
qRegisterMetaType<QHttpMultiPart*>("QHttpMultiPart*");
|
qRegisterMetaType<QHttpMultiPart*>("QHttpMultiPart*");
|
||||||
|
|
||||||
qRegisterMetaType<AccountManagerAuth::Type>();
|
qRegisterMetaType<AccountManagerAuth::Type>();
|
||||||
|
|
||||||
|
qCDebug(networking) << "Metaverse session ID is" << uuidStringWithoutCurlyBraces(_sessionID);
|
||||||
}
|
}
|
||||||
|
|
||||||
const QString DOUBLE_SLASH_SUBSTITUTE = "slashslash";
|
const QString DOUBLE_SLASH_SUBSTITUTE = "slashslash";
|
||||||
|
@ -203,7 +205,7 @@ void AccountManager::setAuthURL(const QUrl& authURL) {
|
||||||
|
|
||||||
void AccountManager::setSessionID(const QUuid& sessionID) {
|
void AccountManager::setSessionID(const QUuid& sessionID) {
|
||||||
if (_sessionID != sessionID) {
|
if (_sessionID != sessionID) {
|
||||||
qCDebug(networking) << "Metaverse session ID is" << uuidStringWithoutCurlyBraces(sessionID);
|
qCDebug(networking) << "Metaverse session ID changed to" << uuidStringWithoutCurlyBraces(sessionID);
|
||||||
_sessionID = sessionID;
|
_sessionID = sessionID;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue