-
-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
Is it intended behavior that [TRACE] logs (e.g., [core] got poll event) are printed even when the --verbose flag is not used?
Currently, the filtering logic in src/helpers/Log.hpp only returns early for LOG and INFO levels:
if (!trace && (level == LOG || level == INFO))
return;Since TRACE is defined as 5, it currently bypasses this check and is printed by default regardless of the trace flag status.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels