:orphan: .. title:: CONFIG_LOG_BACKEND_FS_FILES_LIMIT .. kconfig:: CONFIG_LOG_BACKEND_FS_FILES_LIMIT CONFIG_LOG_BACKEND_FS_FILES_LIMIT ################################# *Max number of files containing logs* Type: ``int`` Help ==== .. code-block:: none Limit of number of files with logs. It is also limited by size of file system partition. Direct dependencies =================== \ :kconfig:`LOG_BACKEND_FS ` && !\ :kconfig:`LOG_FRONTEND ` && !\ :kconfig:`LOG_MINIMAL ` && \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 10 Kconfig definition ================== At ``/logging/Kconfig.backends:363`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:23`` Menu path: (Top) → Sub Systems and OS Services → Logging → Backends → Enable file system backend .. code-block:: kconfig config LOG_BACKEND_FS_FILES_LIMIT int "Max number of files containing logs" default 10 depends on LOG_BACKEND_FS && !LOG_FRONTEND && !LOG_MINIMAL && LOG help Limit of number of files with logs. It is also limited by size of file system partition. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*