diff --git a/src/MeshService.cpp b/src/MeshService.cpp index 2af86b4c3..c8e947acf 100644 --- a/src/MeshService.cpp +++ b/src/MeshService.cpp @@ -272,10 +272,9 @@ void MeshService::sendToMesh(MeshPacket *p) // Note: We might return !OK if our fifo was full, at that point the only option we have is to drop it int didSend = sendViaRadio.notifyObservers(p); if (!didSend) { - DEBUG_MSG("No radio was able to send packet, discarding..."); + DEBUG_MSG("No radio was able to send packet, discarding...\n"); releaseToPool(p); } - } }