19 lines
406 B
Plaintext
19 lines
406 B
Plaintext
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config LOG_BACKEND_NATIVE_POSIX
|
|
bool "Native backend"
|
|
depends on ARCH_POSIX
|
|
default y
|
|
select LOG_OUTPUT
|
|
help
|
|
Enable backend in native_posix
|
|
|
|
if LOG_BACKEND_NATIVE_POSIX
|
|
|
|
backend = NATIVE_POSIX
|
|
backend-str = native_posix
|
|
source "subsys/logging/Kconfig.template.log_format_config"
|
|
|
|
endif # LOG_BACKEND_NATIVE_POSIX
|