mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
use the networking logging category
This commit is contained in:
parent
effa2fc235
commit
8a3336ae95
1 changed files with 2 additions and 2 deletions
|
@ -413,11 +413,11 @@ std::vector<HifiSockAddr> Socket::getConnectionSockAddrs() {
|
|||
}
|
||||
|
||||
void Socket::handleSocketError(QAbstractSocket::SocketError socketError) {
|
||||
qWarning() << "udt::Socket error -" << socketError;
|
||||
qCWarning(networking) << "udt::Socket error -" << socketError;
|
||||
}
|
||||
|
||||
void Socket::handleStateChanged(QAbstractSocket::SocketState socketState) {
|
||||
if (socketState != QAbstractSocket::BoundState) {
|
||||
qWarning() << "udt::Socket state changed - state is now" << socketState;
|
||||
qCWarning(networking) << "udt::Socket state changed - state is now" << socketState;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue