*** empty log message ***

svn path=/trunk/boinc/; revision=10074
This commit is contained in:
Rom Walton 2006-05-01 23:21:19 +00:00
parent 50466c90f6
commit e23b1fdf5e
1 changed files with 0 additions and 6 deletions

View File

@ -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);