mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 23:14:34 +02:00
cleanup some debug from identity packet changes
This commit is contained in:
parent
9ee1cf88e6
commit
5b45beaa39
1 changed files with 1 additions and 4 deletions
|
@ -1504,9 +1504,6 @@ void AvatarData::processAvatarIdentity(const QByteArray& identityData, bool& ide
|
||||||
if (incomingSequenceNumber > _lastIncomingSequenceNumber) {
|
if (incomingSequenceNumber > _lastIncomingSequenceNumber) {
|
||||||
Identity identity;
|
Identity identity;
|
||||||
|
|
||||||
qCDebug(avatars) << "Processing an identity packet from" << avatarSessionID
|
|
||||||
<< "-" << (udt::SequenceNumber::Type) incomingSequenceNumber;
|
|
||||||
|
|
||||||
packetStream >> identity.skeletonModelURL
|
packetStream >> identity.skeletonModelURL
|
||||||
>> identity.attachmentData
|
>> identity.attachmentData
|
||||||
>> identity.displayName
|
>> identity.displayName
|
||||||
|
@ -1558,7 +1555,7 @@ void AvatarData::processAvatarIdentity(const QByteArray& identityData, bool& ide
|
||||||
} else {
|
} else {
|
||||||
qCDebug(avatars) << "Refusing to process identity for" << uuidStringWithoutCurlyBraces(avatarSessionID) << "since"
|
qCDebug(avatars) << "Refusing to process identity for" << uuidStringWithoutCurlyBraces(avatarSessionID) << "since"
|
||||||
<< (udt::SequenceNumber::Type) _lastIncomingSequenceNumber
|
<< (udt::SequenceNumber::Type) _lastIncomingSequenceNumber
|
||||||
<< "is later than" << (udt::SequenceNumber::Type) incomingSequenceNumber;
|
<< "is >=" << (udt::SequenceNumber::Type) incomingSequenceNumber;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue