mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 16:41:02 +02:00
remove spammy logging
This commit is contained in:
parent
de6e1d0217
commit
c568e7c6da
1 changed files with 2 additions and 0 deletions
|
@ -241,8 +241,10 @@ Connection* Socket::findOrCreateConnection(const HifiSockAddr& sockAddr, bool fi
|
||||||
|
|
||||||
if (filterCreate && _connectionCreationFilterOperator && !_connectionCreationFilterOperator(sockAddr)) {
|
if (filterCreate && _connectionCreationFilterOperator && !_connectionCreationFilterOperator(sockAddr)) {
|
||||||
// the connection creation filter did not allow us to create a new connection
|
// the connection creation filter did not allow us to create a new connection
|
||||||
|
#ifdef UDT_CONNECTION_DEBUG
|
||||||
qCDebug(networking) << "Socket::findOrCreateConnection refusing to create connection for" << sockAddr
|
qCDebug(networking) << "Socket::findOrCreateConnection refusing to create connection for" << sockAddr
|
||||||
<< "due to connection creation filter";
|
<< "due to connection creation filter";
|
||||||
|
#endif // UDT_CONNECTION_DEBUG
|
||||||
return nullptr;
|
return nullptr;
|
||||||
} else {
|
} else {
|
||||||
auto congestionControl = _ccFactory->create();
|
auto congestionControl = _ccFactory->create();
|
||||||
|
|
Loading…
Reference in a new issue