diff --git a/lib/diagnostics.C b/lib/diagnostics.C index a4421a78d8..7afe7d6254 100644 --- a/lib/diagnostics.C +++ b/lib/diagnostics.C @@ -384,8 +384,6 @@ int __cdecl boinc_message_reporting(int reportType, char *szMsg, int *retVal){ case _CRT_WARN: case _CRT_ERROR: - OutputDebugString(szMsg); // Reports string to the debugger output window - if (flags & BOINC_DIAG_TRACETOSTDERR) { fprintf(stderr, szMsg); fflush(stderr); @@ -399,10 +397,6 @@ int __cdecl boinc_message_reporting(int reportType, char *szMsg, int *retVal){ break; case _CRT_ASSERT: - OutputDebugString("ASSERT: "); // Reports string to the debugger output window - OutputDebugString(szMsg); // Reports string to the debugger output window - OutputDebugString("\n"); // Reports string to the debugger output window - fprintf(stderr, "ASSERT: %s\n", szMsg); fflush(stderr);