system/nxinit: Change LOG_DEBUG to LOG_USER

Make it clear it is a userspace log.

Signed-off-by: Alan C. Assis <acassis@gmail.com>
This commit is contained in:
Alan Carvalho de Assis 2026-05-27 09:37:57 -03:00 committed by Alan C. Assis
parent cdb89a54f6
commit 820eb64f1a

View file

@ -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; \