代码拉取完成,页面将自动刷新
#include "Log.h"
#include "Common.h"
#include <stdarg.h>
#include <string.h>
#include <stdio.h>
// 保证日志记录线程安全
pthread_mutex_t log_mutex;
Log::Log() {
}
Log::~Log() {
}
void Log::SaveLog(const char* filename, const char* msg, ...) {
__ENTER_FUNCTION
pthread_mutex_lock(&log_mutex);
char buffer[2048];
memset(buffer, 0, 2048);
va_list argptr;
try {
va_start(argptr, msg);
vsprintf(buffer, msg, argptr);
va_end(argptr);
FILE* f = fopen(filename, "ab");
fwrite(buffer, 1, strlen(buffer), f);
fclose(f);
printf(buffer);
} catch (...) {
printf("a big error here");
}
pthread_mutex_unlock(&log_mutex);
return;
__LEAVE_FUNCTION
pthread_mutex_unlock(&log_mutex);
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。