zephyr/lib/posix/options/Kconfig.syslog
Christopher Friedt 3593720080 posix: syslog: add support for syslog
This is just a simple wrapper around Zephyr's native log api.

Note: the standard LOG_ERR syslog priority does conflict with
Zephyr's LOG_ERR() macro. This will need to be worked-around on
a case-by-case basis.

Signed-off-by: Christopher Friedt <cfriedt@meta.com>
2024-02-29 02:45:01 -05:00

11 lines
248 B
Plaintext

# Copyright (c) 2024, Meta
#
# SPDX-License-Identifier: Apache-2.0
config POSIX_SYSLOG
bool "Support for syslog()"
default y if POSIX_API
help
This option provides support for closelog(), openlog(), syslog(),
setlogmask(), and vsyslog().