Skip to content

Commit

Permalink
Removed unnecessary qDebug of datagram size
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonGLM committed May 17, 2023
1 parent 1a76a4c commit 5da24ae
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion library/src/networkdiscovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ void NetworkDiscovery::readPendingDatagrams()
while (socket->hasPendingDatagrams()) {
auto datagram = socket->receiveDatagram();
auto data = datagram.data();
qDebug() << data.size();
if (datagram.isNull() || !datagram.isValid() || data.size() < 4) {
datagram.clear();
return;
Expand Down

0 comments on commit 5da24ae

Please sign in to comment.