This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 820eb64f1abd998aedd118f6f30b591b4fa75bf6 Author: Alan Carvalho de Assis <[email protected]> AuthorDate: Wed May 27 09:37:57 2026 -0300 system/nxinit: Change LOG_DEBUG to LOG_USER Make it clear it is a userspace log. Signed-off-by: Alan C. Assis <[email protected]> --- system/nxinit/init.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/nxinit/init.h b/system/nxinit/init.h index 3e81aceb0..16daa2306 100644 --- a/system/nxinit/init.h +++ b/system/nxinit/init.h @@ -36,7 +36,7 @@ #define TIMESPEC2MS(t) (((t).tv_sec * 1000) + (t).tv_nsec / 1000000) #ifdef CONFIG_SYSTEM_NXINIT_DEBUG -#define init_debug(...) syslog(LOG_DEBUG, ##__VA_ARGS__) +#define init_debug(...) syslog(LOG_USER, ##__VA_ARGS__) #define init_dump_args(argc, argv) \ { \ int _i; \
