mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
we need to strip the NO_PREFIX flag so your log_level is corrected for checking against the global
This commit is contained in:
parent
81355415d0
commit
1d22bb7b81
2 changed files with 6 additions and 0 deletions
|
@ -49,6 +49,9 @@ void vprint(ScreenLogLevel screen_log_level, const char *fmt, va_list args)
|
||||||
char buf[PRINT_MESSAGE_MAX_LENGTH];
|
char buf[PRINT_MESSAGE_MAX_LENGTH];
|
||||||
vsnprintf(buf, PRINT_MESSAGE_MAX_LENGTH, fmt, args);
|
vsnprintf(buf, PRINT_MESSAGE_MAX_LENGTH, fmt, args);
|
||||||
|
|
||||||
|
/* we don't need that flag here, but if it gets used, strip it so we print correctly */
|
||||||
|
screen_log_level &= ~SCREEN_LOG_LEVEL_NO_PREFIX;
|
||||||
|
|
||||||
/* log to UART */
|
/* log to UART */
|
||||||
log_to_uart(buf);
|
log_to_uart(buf);
|
||||||
|
|
||||||
|
|
|
@ -48,6 +48,9 @@ void vprint(ScreenLogLevel screen_log_level, const char *fmt, va_list args)
|
||||||
char buf[PRINT_MESSAGE_MAX_LENGTH];
|
char buf[PRINT_MESSAGE_MAX_LENGTH];
|
||||||
vsnprintf(buf, PRINT_MESSAGE_MAX_LENGTH, fmt, args);
|
vsnprintf(buf, PRINT_MESSAGE_MAX_LENGTH, fmt, args);
|
||||||
|
|
||||||
|
/* we don't need that flag here, but if it gets used, strip it so we print correctly */
|
||||||
|
screen_log_level &= ~SCREEN_LOG_LEVEL_NO_PREFIX;
|
||||||
|
|
||||||
/* log to UART */
|
/* log to UART */
|
||||||
log_to_uart(buf);
|
log_to_uart(buf);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue