diff --git a/api/win/Stackwalker.cpp b/api/win/Stackwalker.cpp index 878ed39083..1e835f207f 100644 --- a/api/win/Stackwalker.cpp +++ b/api/win/Stackwalker.cpp @@ -1909,14 +1909,6 @@ DWORD StackwalkFilter( EXCEPTION_POINTERS *ep, DWORD status, LPCTSTR pszLogFile) _ftprintf(fFile, _T("code_desc=\"%s\" more_desc=\"%s\">\n"), GetExpectionCodeText(ep->ExceptionRecord->ExceptionCode), GetAdditionalExpectionCodeText(ep->ExceptionRecord)); } - else - { - _ftprintf(fFile, _T("######## EXCEPTION: 0x%8.8X at address: 0x%8.8X"), - ep->ExceptionRecord->ExceptionCode, - ep->ExceptionRecord->ExceptionAddress); - _ftprintf(fFile, _T(": %s %s\n"), GetExpectionCodeText(ep->ExceptionRecord->ExceptionCode), - GetAdditionalExpectionCodeText(ep->ExceptionRecord)); - } DuplicateHandle( GetCurrentProcess(), GetCurrentThread(), GetCurrentProcess(), &hThread, 0, false, DUPLICATE_SAME_ACCESS ); diff --git a/checkin_notes b/checkin_notes index d88189b88a..fc06319316 100755 --- a/checkin_notes +++ b/checkin_notes @@ -10113,3 +10113,9 @@ David Feb 19 2004 Jeff Feb 19 2004 - CVS tagged as seti_boinc_app_release_2_25. + +Rom Feb 23 2004 + - Removed stackwalkers exception description so duplicate information is not logged. + + api/win/ + stackwalker.cpp