mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:09:24 +02:00
reduce log spam
This commit is contained in:
parent
0f0b4519fd
commit
1a17de6dbb
1 changed files with 4 additions and 1 deletions
|
@ -515,7 +515,10 @@ int EntityItem::readEntityDataFromBuffer(const unsigned char* data, int bytesLef
|
||||||
// we can confidently ignore this packet
|
// we can confidently ignore this packet
|
||||||
EntityTreePointer tree = getTree();
|
EntityTreePointer tree = getTree();
|
||||||
if (tree && tree->isDeletedEntity(_id)) {
|
if (tree && tree->isDeletedEntity(_id)) {
|
||||||
qDebug() << "Recieved packet for previously deleted entity [" << _id << "] ignoring. (inside " << __FUNCTION__ << ")";
|
#ifdef WANT_DEBUG
|
||||||
|
qDebug() << "Recieved packet for previously deleted entity [" << _id << "] ignoring. "
|
||||||
|
"(inside " << __FUNCTION__ << ")";
|
||||||
|
#endif
|
||||||
ignoreServerPacket = true;
|
ignoreServerPacket = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue