You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using this log handler in combination with SYSTEM_THREAD(ENABLED) can cause freezes on 3rd gen Devices, as described in the Particle forum thread linked above.
This log handler is sending udp packets in the log handler function:
ParticlePapertrail/src/papertrail.cpp
Line 28 in ab2a083
Using network functions in the log handler function is not recommended:
Using this log handler in combination with
SYSTEM_THREAD(ENABLED)
can cause freezes on 3rd gen Devices, as described in the Particle forum thread linked above.To solve this, the logs could be saved to a buffer and the network functions moved to the main loop, as suggested and implemented by @rickkas7 in https://github.com/rickkas7/SdCardLogHandlerRK
The text was updated successfully, but these errors were encountered: