:orphan: .. title:: CONFIG_LOG_BACKEND_NET .. kconfig:: CONFIG_LOG_BACKEND_NET CONFIG_LOG_BACKEND_NET ###################### *Enable networking backend* Type: ``bool`` Help ==== .. code-block:: none Send syslog messages to network server. See RFC 5424 (syslog protocol) and RFC 5426 (syslog over UDP) specifications for details. Direct dependencies =================== \ :kconfig:`NETWORKING ` && \ :kconfig:`NET_UDP ` && !\ :kconfig:`LOG_IMMEDIATE ` && !\ :kconfig:`LOG_FRONTEND ` && !\ :kconfig:`LOG_MINIMAL ` && \ :kconfig:`LOG ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`NET_CONTEXT_NET_PKT_POOL ` Kconfig definition ================== At ``/logging/Kconfig.backends:230`` 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_NET bool "Enable networking backend" select NET_CONTEXT_NET_PKT_POOL depends on NETWORKING && NET_UDP && !LOG_IMMEDIATE && !LOG_FRONTEND && !LOG_MINIMAL && LOG help Send syslog messages to network server. See RFC 5424 (syslog protocol) and RFC 5426 (syslog over UDP) specifications for details. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*