代码拉取完成,页面将自动刷新
#pragma once
#ifndef __debug_log__
#define __debug_log__
//#define __WRITE_FILE__
#include <stdio.h>
#include <time.h>
#include <string.h>
#include <stdarg.h>
void DEBUG_LOG(const char* msg, ...);
class Debug_LOG
{
private:
Debug_LOG();
~Debug_LOG();
void create_log_file();
public:
static Debug_LOG* log();
void write_log(const char* msg);
private:
static Debug_LOG* m_log;
time_t tim;
struct tm* t;
FILE* fp;
char filepath[32];
char message[256];
struct tm last_log_time;
};
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。