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>
11 lines
248 B
Plaintext
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().
|