:orphan: .. title:: LOG_STRDUP_BUF_COUNT .. option:: CONFIG_LOG_STRDUP_BUF_COUNT *Number of buffers in the pool used by log_strdup()* Type: ``int`` Help ==== Number of calls to log_strdup() which can be pending before flushed to output. If "" message is seen in the log output, it means this value is too small and should be increased. Each entry takes CONFIG_LOG_STRDUP_MAX_STRING bytes of memory plus some additional fixed overhead. Direct dependencies =================== \ :option:`LOG_MODE_DEFERRED ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 4 Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.processing:119`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:23`` Menu path: (Top) → Sub Systems and OS Services → Logging → Processing .. parsed-literal:: config LOG_STRDUP_BUF_COUNT int "Number of buffers in the pool used by log_strdup()" default 4 depends on \ :option:`LOG_MODE_DEFERRED ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` help Number of calls to log_strdup() which can be pending before flushed to output. If "" message is seen in the log output, it means this value is too small and should be increased. Each entry takes CONFIG_LOG_STRDUP_MAX_STRING bytes of memory plus some additional fixed overhead. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*