mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +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) {
|
||||
Identity identity;
|
||||
|
||||
qCDebug(avatars) << "Processing an identity packet from" << avatarSessionID
|
||||
<< "-" << (udt::SequenceNumber::Type) incomingSequenceNumber;
|
||||
|
||||
packetStream >> identity.skeletonModelURL
|
||||
>> identity.attachmentData
|
||||
>> identity.displayName
|
||||
|
@ -1558,7 +1555,7 @@ void AvatarData::processAvatarIdentity(const QByteArray& identityData, bool& ide
|
|||
} else {
|
||||
qCDebug(avatars) << "Refusing to process identity for" << uuidStringWithoutCurlyBraces(avatarSessionID) << "since"
|
||||
<< (udt::SequenceNumber::Type) _lastIncomingSequenceNumber
|
||||
<< "is later than" << (udt::SequenceNumber::Type) incomingSequenceNumber;
|
||||
<< "is >=" << (udt::SequenceNumber::Type) incomingSequenceNumber;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue