반응형 Simple Log1 [MFC] 심플한 로그 함수 #include "stdafx.h" namespace DEBUGLOG { CString LogPath; } int WriteLog(LPCTSTR pFormat, ...) { TCHAR Buff[1024] = {0,}; va_list arg; va_start(arg, pFormat); _vstprintf_s(Buff, _countof(Buff) - 1, pFormat, arg); va_end(arg); SYSTEMTIME lpSystemTime; GetLocalTime(&lpSystemTime); COleDateTime CurSysTime(lpSystemTime); CString TimedLog; TimedLog.Format(_T("[%s] ", CurSysTime.Format(_T("%Y%m%d %H:%.. 2016. 10. 18. 이전 1 다음 반응형