This repository was archived by the owner on Oct 27, 2024. It is now read-only.
This repository was archived by the owner on Oct 27, 2024. It is now read-only.
RPS debug logging output format not as desired #37
Open
Description
The debug output format for RPS information does not match other debug messages:
10:42:46.290 -> [ 47074][D][BresserWeatherSensorTTN.ino:820] NetTxComplete():
10:42:46.290 -> 41359 ms:[ 47090][I][BresserWeatherSensorTTN.ino:772] operator()(): TX @41359 ms: ch=2 rps=0x03 (SF9 BW125 CR 4/5 Crc IH=0)
10:42:46.290 ->
(Preceeding extra timestamp 41359ms:
, extra line-feed.)
This is due to the fact that there are still Serial.print()
calls in ~/Arduino/libraries/MCCI_Arduino_LoRaWAN_Library/src/lib/arduino_lorawan_cEventLog.cpp
even if debug output is implemented in the sketch with the myEventLog.logEvent()
function. (see Arduino_LoRaWAN::cEventLog::processSingleEvent()
)