fix: Default print to stderr and not stdout

Allows using stdout for outputting data/result
and not mixing it with log messages (by default).
This commit is contained in:
icex2
2024-08-15 11:34:31 +02:00
parent b188b938dc
commit 690d3b1385

View File

@@ -23,7 +23,7 @@ static void _core_boot_log_std_msg(const char *module, const char *fmt, ...)
va_start(args, fmt);
printf("[%s] ", module);
vprintf(fmt, args);
vfprintf(stderr, fmt, args);
printf("\n");
va_end(args);