:orphan: .. title:: CONFIG_LOG_DOMAIN_ID .. kconfig:: CONFIG_LOG_DOMAIN_ID CONFIG_LOG_DOMAIN_ID #################### *Domain ID* Type: ``int`` Help ==== .. code-block:: none In multicore system each application/core must have unique domain ID. Direct dependencies =================== !\ :kconfig:`LOG_MINIMAL ` && \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Default ======= - 0 Kconfig definition ================== At ``/logging/Kconfig.misc:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:31`` → ``/logging/Kconfig:27`` Menu path: (Top) → Sub Systems and OS Services → Logging → Misc .. code-block:: kconfig config LOG_DOMAIN_ID int "Domain ID" range 0 7 default 0 depends on !LOG_MINIMAL && LOG help In multicore system each application/core must have unique domain ID. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*