Skip to content

Commit

Permalink
trace: Kconfig: disable filtering by default
Browse files Browse the repository at this point in the history
The trace filtering will suppress useful logs and make debugging
difficult, disable it by default.

Signed-off-by: Keyon Jie <[email protected]>
  • Loading branch information
keyonjie committed Sep 16, 2021
1 parent 410ebe4 commit 47606c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/trace/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,22 @@ config TRACEM
config TRACE_FILTERING
bool "Trace filtering"
depends on TRACE
default y
default n
help
Filtering of trace messages based on their verbosity level and frequency.

config TRACE_FILTERING_VERBOSITY
bool "Filter by verbosity"
depends on TRACE_FILTERING
default y
default n
help
Filtering by log verbosity level, where maximum verbosity allowed is specified for each
context and may be adjusted in runtime.

config TRACE_FILTERING_ADAPTIVE
bool "Adaptive rate limiting"
depends on TRACE_FILTERING
default y
default n
help
Adaptive filtering of trace messages, tracking up to CONFIG_TRACE_RECENT_ENTRIES_COUNT,
suppressing all repeated messages for up to CONFIG_TRACE_RECENT_TIME_THRESHOLD cycles.
Expand Down

0 comments on commit 47606c2

Please sign in to comment.