:orphan: .. title:: LOG_PROCESS_THREAD_STACK_SIZE .. option:: CONFIG_LOG_PROCESS_THREAD_STACK_SIZE *Stack size for the internal log processing thread* Type: ``int`` Help ==== Set the internal stack size for log processing thread. Direct dependencies =================== \ :option:`LOG_PROCESS_THREAD ` && !\ :option:`LOG_IMMEDIATE ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - 2048 if \ :option:`COVERAGE_GCOV ` - 1024 if \ :option:`NO_OPTIMIZATIONS ` - 1024 if \ :option:`XTENSA ` - 4096 if \ :option:`X86 ` && \ :option:`X86_64 ` - 4096 if \ :option:`ARM64 ` - 4096 if \ :option:`SPARC ` - 2048 if \ :option:`RISCV ` && \ :option:`64BIT ` - 768 Kconfig definition ================== .. highlight:: kconfig At ``subsys/logging/Kconfig.processing:75`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:31`` → ``subsys/logging/Kconfig:23`` Menu path: (Top) → Sub Systems and OS Services → Logging → Processing → Use internal thread for log processing .. parsed-literal:: config LOG_PROCESS_THREAD_STACK_SIZE int "Stack size for the internal log processing thread" default 2048 if \ :option:`COVERAGE_GCOV ` default 1024 if \ :option:`NO_OPTIMIZATIONS ` default 1024 if \ :option:`XTENSA ` default 4096 if \ :option:`X86 ` && \ :option:`X86_64 ` default 4096 if \ :option:`ARM64 ` default 4096 if \ :option:`SPARC ` default 2048 if \ :option:`RISCV ` && \ :option:`64BIT ` default 768 depends on \ :option:`LOG_PROCESS_THREAD ` && !\ :option:`LOG_IMMEDIATE ` && !\ :option:`LOG_MINIMAL ` && !\ :option:`LOG_FRONTEND ` && !\ :option:`LOG_MINIMAL ` && \ :option:`LOG ` help Set the internal stack size for log processing thread. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*