less debug output

This commit is contained in:
geeksville 2020-06-13 17:02:32 -07:00
parent 1a6c7c8d4e
commit abe0665d03

View file

@ -893,7 +893,7 @@ class MeshService : Service(), Logging {
val packet = toMeshPacket(p)
p.status = MessageStatus.ENROUTE
p.time = System.currentTimeMillis() // update time to the actual time we started sending
debug("SENDING TO RADIO: $packet")
// debug("SENDING TO RADIO: $packet")
sendToRadio(packet)
}
@ -1161,7 +1161,7 @@ class MeshService : Service(), Logging {
try {
val proto =
MeshProtos.FromRadio.parseFrom(bytes)
info("Received from radio service: ${proto.toOneLineString()}")
// info("Received from radio service: ${proto.toOneLineString()}")
when (proto.variantCase.number) {
MeshProtos.FromRadio.PACKET_FIELD_NUMBER -> handleReceivedMeshPacket(
proto.packet