From fcbd6ac3415d4a122d21b2e379ccf170620f45da Mon Sep 17 00:00:00 2001 From: xengineering Date: Fri, 21 Mar 2025 22:07:26 +0100 Subject: fw: syslog: Add static syslog logging Network-based logging via the syslog protocol allows to log from many IoT devices to a central log server. This makes reading logs way easier. Choosing UDP removes the need for logic keeping a state. Maybe dropped packages are acceptable for the use case but should be rare anyway. --- fw/src/syslog.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 fw/src/syslog.c (limited to 'fw/src/syslog.c') diff --git a/fw/src/syslog.c b/fw/src/syslog.c new file mode 100644 index 0000000..fb15ab8 --- /dev/null +++ b/fw/src/syslog.c @@ -0,0 +1,23 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public License, + * v. 2.0. If a copy of the MPL was not distributed with this file, You can + * obtain one at https://mozilla.org/MPL/2.0/. + */ + +#include +#include +#include + +LOG_MODULE_REGISTER(syslog); + +int init_syslog() +{ + for(int i=0; i<5; i++) { + LOG_INF("Informational message number %d", i); + k_msleep(1000); + } + + return 0; +} + +SYS_INIT(init_syslog, APPLICATION, 50); -- cgit v1.2.3-70-g09d2