:orphan: .. title:: SHELL_LOG_BACKEND .. option:: CONFIG_SHELL_LOG_BACKEND *Enable shell log backend* Type: ``bool`` Help ==== When enabled, backend will use the shell for logging. This option is enabled by default. Disabling this option disables log output to all shell backends. Disabling log output to a specific shell backend can be achieved using the shell backend's LOG_LEVEL option (e.g. CONFIG_SHELL_TELNET_INIT_LOG_LEVEL_NONE=y). Direct dependencies =================== !\ :option:`LOG_MINIMAL ` && \ :option:`SHELL ` *(Includes any dependencies from ifs and menus.)* Default ======= - y if \ :option:`LOG ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/shell/Kconfig:164`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:41`` Menu path: (Top) → Sub Systems and OS Services → Shell .. parsed-literal:: config SHELL_LOG_BACKEND bool "Enable shell log backend" default y if \ :option:`LOG ` depends on !\ :option:`LOG_MINIMAL ` && \ :option:`SHELL ` help When enabled, backend will use the shell for logging. This option is enabled by default. Disabling this option disables log output to all shell backends. Disabling log output to a specific shell backend can be achieved using the shell backend's LOG_LEVEL option (e.g. CONFIG_SHELL_TELNET_INIT_LOG_LEVEL_NONE=y). *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*