mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 04:32:41 +00:00
If network based syslog backend is enabled in Kconfig file, then syslog messages are sent to external system using UDP. See RFC 5424 and RFC 5426 for details about the syslog protocol. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
8 lines
206 B
CMake
8 lines
206 B
CMake
zephyr_sources_ifdef(CONFIG_SYS_LOG sys_log.c)
|
|
zephyr_sources_ifdef(
|
|
CONFIG_KERNEL_EVENT_LOGGER
|
|
event_logger.c
|
|
kernel_event_logger.c
|
|
)
|
|
zephyr_sources_ifdef(CONFIG_SYS_LOG_BACKEND_NET sys_log_net.c)
|