mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2024-11-22 10:40:05 +08:00
修复c api日志打印bug
This commit is contained in:
parent
09ac333e35
commit
6636482bcf
@ -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, ...) {
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
toolkit::LoggerWrapper::printLog(getLogger(), level, file, function, line, fmt, ap);
|
||||
toolkit::LoggerWrapper::printLogV(getLogger(), level, file, function, line, fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user