*** empty log message ***

svn path=/trunk/boinc/; revision=5940
This commit is contained in:
Rom Walton 2005-04-27 01:34:35 +00:00
parent abf19d7de2
commit a5684b1402
1 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,11 @@ wxLogBOINC::wxLogBOINC() {
void wxLogBOINC::DoLogString(const wxChar *szString, time_t t) {
diagnostics_cycle_logs();
#ifdef __WXMSW__
wxString strDebug = szString;
strDebug += wxT("\r\n");
::OutputDebugString(strDebug.c_str());
#endif
wxLogStderr::DoLogString(szString, t);
}