Skip to content

Commit b9bf596

Browse files
nordic-krchcarlescufi
authored andcommitted
logging: Fix LOG_FMT_SECTION_STRIP Kconfig dependency
Strings stripping was disallowed when LOG_OUTPUT was used. However, there is a dictionary log_output module which could work with stripped strings. Dependency is changed to LOG_DICTIONARY_SUPPORT. Signed-off-by: Krzysztof Chruściński <[email protected]>
1 parent 972a4d9 commit b9bf596

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/logging/Kconfig.misc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ config LOG_FMT_SECTION
6666

6767
config LOG_FMT_SECTION_STRIP
6868
bool "Strip log strings from binary"
69-
depends on !LOG_OUTPUT
69+
depends on LOG_DICTIONARY_SUPPORT
7070
depends on LOG_FMT_SECTION
7171
depends on LINKER_DEVNULL_SUPPORT
7272
imply LINKER_DEVNULL_MEMORY

0 commit comments

Comments
 (0)