C语言 C++ MFC 写日志到文件

C语言 写日志到文件

#include <stdio.h>
#include <time.h>
int WriteLogToFile2(char* szLog) {
	// 打开一个文件用于写入日志
	FILE* logfile;
	fopen_s(&logfile, ".\\SmartPayDemo.log", "a"); // "a"表示追加模式,如果文件不存在则创建

	if (logfile == NULL) {
		printf("Can not open log file.\n");
		return 1;
	}

	time_t current_time;
	struct tm time_info;
	char time_string[20];

	time(&current_time);
	if (localtime_s(&time_info, &current_time) != 0) {
		printf("Unable to retrieve local time.\n");
		fclose(logfile);
		return 1;
	}
	strftime(time_string, sizeof(time_string), "%Y-%m-%d %H:%M:%S", &time_info);

	// 写入日志消息到文件
	fprintf(logfile, "[%s] %s\n", time_string, szLog);

	// 关闭文件
	fclose(logfile);
	return 0;
}
void CSmartPayDemoDlg::PrintLog(const char* msg, ...)
{
	//CString strAll = TEXT("");
	//((CEdit*)GetDlgItem(IDC_EDIT1))->GetWindowTextW(strAll);
	//((CEdit*)GetDlgItem(IDC_EDIT1))->SetWindowTextW(strAll + strAdd + L"\r\n");
	char sMsgBuff[4096] = { 0 };
	va_list args;
	va_start(args, msg);
	vsprintf_s(sMsgBuff, msg, args);
	va_end(args);
	//OutputDebugStringA(sMsgBuff);
	WriteLogToFile2(sMsgBuff);
	((CEdit*)GetDlgItem(IDC_EDIT1))->SetSel(GetDlgItem(IDC_EDIT1)->GetWindowTextLength(), GetDlgItem(IDC_EDIT1)->GetWindowTextLength());
	((CEdit*)GetDlgItem(IDC_EDIT1))->ReplaceSel(CString(sMsgBuff) + L"\r\n");
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小黄人软件

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值