mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2026-08-20 07:24:01 -05:00
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user