1# SPDX-License-Identifier: Apache-2.0 2# Copyright (c) 2022 Intel Corporation 3 4config LOG_BACKEND_MOCK 5 bool "MOCK backend" 6 help 7 When enabled MOCK backend is used for logging. It is 8 used to capture the output buffer used for validation of 9 log messages. It will not output any logs. 10 11if LOG_BACKEND_MOCK 12 13backend = MOCK 14backend-str = mock 15source "subsys/logging/Kconfig.template.log_format_config" 16 17endif # LOG_BACKEND_MOCK 18 19# Include Zephyr's Kconfig. 20source "Kconfig.zephyr" 21