Comment out extra-chatty debug message (#2715)

This commit is contained in:
Jonathan Bennett 2023-08-12 13:51:31 -05:00 committed by GitHub
parent c44986127e
commit d29c975e3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -260,7 +260,7 @@ bool NMEAGPS::whileIdle()
} }
#endif #endif
// if (_serial_gps->available() > 0) // if (_serial_gps->available() > 0)
LOG_DEBUG("GPS Bytes Waiting: %u\n", _serial_gps->available()); // LOG_DEBUG("GPS Bytes Waiting: %u\n", _serial_gps->available());
// First consume any chars that have piled up at the receiver // First consume any chars that have piled up at the receiver
while (_serial_gps->available() > 0) { while (_serial_gps->available() > 0) {
int c = _serial_gps->read(); int c = _serial_gps->read();