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
Even if you specify LOG_LEVEL_SILENT, you cannot suppress the logs because LOG_LEVEL_PROFILE is the strongest.
Doesn't this seem strange considering the meaning of LOG_LEVEL_SILENT ?
Personally, I feel that it would be more appropriate to have the strength between LOG_LEVEL_INFO and LOG_LEVEL_WARN.
The text was updated successfully, but these errors were encountered:
LOG_LEVEL_PROFILE has been added in Ver1.8.0.
It is defined as follows:
#define LOG_LEVEL_VERBOSE 1
#define LOG_LEVEL_DEBUG 2
#define LOG_LEVEL_INFO 3
#define LOG_LEVEL_WARN 4
#define LOG_LEVEL_ERROR 5
#define LOG_LEVEL_FATAL 6
#define LOG_LEVEL_SILENT 7
#define LOG_LEVEL_PROFILE 8
Even if you specify LOG_LEVEL_SILENT, you cannot suppress the logs because LOG_LEVEL_PROFILE is the strongest.
Doesn't this seem strange considering the meaning of LOG_LEVEL_SILENT ?
Personally, I feel that it would be more appropriate to have the strength between LOG_LEVEL_INFO and LOG_LEVEL_WARN.
The text was updated successfully, but these errors were encountered: