diff --git a/boards/posix/native_posix/Kconfig.defconfig b/boards/posix/native_posix/Kconfig.defconfig index 3e1fab23626..0d4d4583555 100644 --- a/boards/posix/native_posix/Kconfig.defconfig +++ b/boards/posix/native_posix/Kconfig.defconfig @@ -38,4 +38,21 @@ endchoice endif # BT_HCI +if LOG + +config LOG_BACKEND_NATIVE_POSIX + def_bool y + +# For native_posix we can log immediately without any problem +# Doing so will be nicer for debugging +config LOG_INPLACE_PROCESS + def_bool y + +# If we set LOG_INPLACE_PROCESS, there is no need to have the logging thread +# running +config LOG_PROCESS_THREAD + def_bool n + +endif # LOG + endif # BOARD_NATIVE_POSIX