void log_printf(LPCTSTR pszFormat, ...)
{
TCHAR szBuffer[512]={0};
//读取参数
va_list args;
va_start(args,pszFormat);
vsprintf_s(szBuffer, sizeof(szBuffer), pszFormat, args);
va_end(args);
OutputDebugString(szBuffer);
}