Fix Tasmota logging when NIMBLE is enabled

This commit is contained in:
Theo Arends 2021-10-07 14:15:20 +02:00
parent 7377f9f081
commit a176778956
1 changed files with 8 additions and 0 deletions

View File

@ -26,12 +26,20 @@
extern "C" {
#endif
/*
#define LOG_LEVEL_DEBUG (0)
#define LOG_LEVEL_INFO (1)
#define LOG_LEVEL_WARN (2)
#define LOG_LEVEL_ERROR (3)
#define LOG_LEVEL_CRITICAL (4)
#define LOG_LEVEL_NONE (5)
*/
#define LOG_LEVEL_DEBUG (3)
#define LOG_LEVEL_INFO (2)
#define LOG_LEVEL_WARN (5)
#define LOG_LEVEL_ERROR (1)
#define LOG_LEVEL_CRITICAL (4)
#define LOG_LEVEL_NONE (0)
/* Up to 7 custom log levels. */
#define LOG_LEVEL_MAX (15)