Bugfix: 修复ZLToolKit适配相关bug

This commit is contained in:
xiongziliang 2021-11-13 00:27:53 +08:00
parent b0343acf8c
commit 9d94aa8ded

View File

@ -47,7 +47,7 @@ API_EXPORT char* API_CALL mk_util_hex_dump(const void *buf, int len){
API_EXPORT void API_CALL mk_log_printf(int level, const char *file, const char *function, int line, const char *fmt, ...) { API_EXPORT void API_CALL mk_log_printf(int level, const char *file, const char *function, int line, const char *fmt, ...) {
va_list ap; va_list ap;
va_start(ap, fmt); va_start(ap, fmt);
toolkit::printLog(getLogger(), level, file, function, line, fmt, ap); toolkit::LoggerWrapper::printLog(getLogger(), level, file, function, line, fmt, ap);
va_end(ap); va_end(ap);
} }