调整处理器结构体

This commit is contained in:
2024-08-14 13:02:27 +08:00
parent d2a2b933a5
commit 96a417ba93
5 changed files with 23 additions and 9 deletions

View File

@@ -88,7 +88,7 @@ static void _builtin_log(char* level, const char *color, const char* message, ..
if (handler->apply_color) sprintf(logStr, "%s %s%s%s %s\n", timeStr, color,level,RESET, message);
else sprintf(logStr, "%s %s %s\n", timeStr, level, message);
fputs(logStr, handler->out);
handler->output(handler,logStr);
}