mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 16:55:07 +02:00
turn off verbose octree packet debug
This commit is contained in:
parent
db25cd9d2c
commit
ef58453fda
2 changed files with 3 additions and 1 deletions
|
@ -21,4 +21,6 @@ PaymentManager& PaymentManager::getInstance() {
|
|||
|
||||
void PaymentManager::sendSignedPayment(qint64 satoshiAmount, const QUuid& nodeUUID, const QUuid& destinationWalletUUID) {
|
||||
qDebug() << "Paying" << satoshiAmount << "satoshis to" << destinationWalletUUID << "via" << nodeUUID;
|
||||
|
||||
|
||||
}
|
|
@ -112,7 +112,7 @@ void OctreeEditPacketSender::queuePacketToNode(const QUuid& nodeUUID, unsigned c
|
|||
_sentPacketHistories[nodeUUID].packetSent(sequence, packet);
|
||||
|
||||
// debugging output...
|
||||
bool wantDebugging = true;
|
||||
bool wantDebugging = false;
|
||||
if (wantDebugging) {
|
||||
int numBytesPacketHeader = numBytesForPacketHeader(reinterpret_cast<const char*>(buffer));
|
||||
unsigned short int sequence = (*((unsigned short int*)(buffer + numBytesPacketHeader)));
|
||||
|
|
Loading…
Reference in a new issue