From a5684b1402048430a2d032f0908568a907687a9c Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Wed, 27 Apr 2005 01:34:35 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=5940 --- clientgui/LogBOINC.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/clientgui/LogBOINC.cpp b/clientgui/LogBOINC.cpp index 739b3aaea8..4a99a4411f 100644 --- a/clientgui/LogBOINC.cpp +++ b/clientgui/LogBOINC.cpp @@ -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); }