Skip to content

Commit 9fadef7

Browse files
keyonjielgirdwood
authored andcommitted
trace: Kconfig: disable filtering by default
The trace filtering will suppress useful logs and make debugging difficult, disable it by default. Signed-off-by: Keyon Jie <yang.jie@linux.intel.com>
1 parent 2a1f2c7 commit 9fadef7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/trace/Kconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,22 +35,22 @@ config TRACEM
3535
config TRACE_FILTERING
3636
bool "Trace filtering"
3737
depends on TRACE
38-
default y
38+
default n
3939
help
4040
Filtering of trace messages based on their verbosity level and frequency.
4141

4242
config TRACE_FILTERING_VERBOSITY
4343
bool "Filter by verbosity"
4444
depends on TRACE_FILTERING
45-
default y
45+
default n
4646
help
4747
Filtering by log verbosity level, where maximum verbosity allowed is specified for each
4848
context and may be adjusted in runtime.
4949

5050
config TRACE_FILTERING_ADAPTIVE
5151
bool "Adaptive rate limiting"
5252
depends on TRACE_FILTERING
53-
default y
53+
default n
5454
help
5555
Adaptive filtering of trace messages, tracking up to CONFIG_TRACE_RECENT_ENTRIES_COUNT,
5656
suppressing all repeated messages for up to CONFIG_TRACE_RECENT_TIME_THRESHOLD cycles.

0 commit comments

Comments
 (0)