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
Issue thijse#30: Added an option to prevent automatic instantiation of a Log object.
Issue thijse#31: Introduced mutex locks around logging to enable synchronized logging in multi-core environments.
Note:<mutex> is not available on most Arduino boards. To avoid compilation errors, this support is disabled by default. To enable it, define the ESP32 compile flag, i.e., #define ESP32.
The original behavior has been modified: LOG_LEVEL_INFO now outputs without color (previously green), while errors and warnings are displayed in red and yellow, respectively. Refer to the README for more details.
Comprehensive code cleanup and refactoring for improved readability and maintainability.
Implemented CI/CD pipeline.
Added support for multiple output streams, allowing logging to Serial and additional outputs simultaneously. For more details, refer to the README.