:orphan: .. title:: CONFIG_LOG_BACKEND_FS .. kconfig:: CONFIG_LOG_BACKEND_FS CONFIG_LOG_BACKEND_FS ##################### *Enable file system backend* Type: ``bool`` Help ==== .. code-block:: none When enabled, backend is using the configured file system to output logs. As the file system must be mounted for the logging to work, it must be either configured for auto-mount or manually mounted by the application. Log messages are discarded as long as the file system is not mounted. Direct dependencies =================== \ :kconfig:`FILE_SYSTEM ` && !\ :kconfig:`LOG_FRONTEND ` && !\ :kconfig:`LOG_MINIMAL ` && \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== At ``/logging/Kconfig.backends:300`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:23`` Menu path: (Top) → Sub Systems and OS Services → Logging → Backends .. code-block:: kconfig config LOG_BACKEND_FS bool "Enable file system backend" depends on FILE_SYSTEM && !LOG_FRONTEND && !LOG_MINIMAL && LOG help When enabled, backend is using the configured file system to output logs. As the file system must be mounted for the logging to work, it must be either configured for auto-mount or manually mounted by the application. Log messages are discarded as long as the file system is not mounted. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*