release 下打日志

//release 下打日志


#define PRINT_LINE(FUNC_NAME,LINE_NUM) 
    {
    TCHAR szDebugInfo[512] = {0};
    _stprintf_s(szDebugInfo,512,_T("CoralIE: FuncName: %s , Line: %dn"),FUNC_NAME,LINE_NUM);
    OutputDebugString(szDebugInfo);
    }

#define  PRINT_CURLINE()  PRINT_LINE(__FUNCTIONW__, __LINE__)