add log for emulator

Signed-off-by: liaoxingxing <liaoxingbin@h-partners.com>
This commit is contained in:
liaoxingxing 2024-08-16 11:23:43 +08:00
parent 980c351dec
commit f48a45e0b1

View File

@ -47,7 +47,7 @@ LogLevel convert_uv_log_level(enum uv__log_level level) {
int uv__log_impl(enum uv__log_level level, const char *fmt, ...) {
va_list args;
va_start(args, fmt);
int ret = HiLogPrintArgs(LOG_CORE, convert_uv_log_level(level), 0xD003301, "UV", fmt, args);
int ret = HiLogPrintArgs(LOG_CORE, convert_uv_log_level(level), 0xD003301, "LIBUV", fmt, args);
va_end(args);
return ret;
}