mirror of https://github.com/BOINC/boinc.git
*** empty log message ***
svn path=/trunk/boinc/; revision=5940
This commit is contained in:
parent
abf19d7de2
commit
a5684b1402
|
@ -33,6 +33,11 @@ wxLogBOINC::wxLogBOINC() {
|
||||||
|
|
||||||
void wxLogBOINC::DoLogString(const wxChar *szString, time_t t) {
|
void wxLogBOINC::DoLogString(const wxChar *szString, time_t t) {
|
||||||
diagnostics_cycle_logs();
|
diagnostics_cycle_logs();
|
||||||
|
#ifdef __WXMSW__
|
||||||
|
wxString strDebug = szString;
|
||||||
|
strDebug += wxT("\r\n");
|
||||||
|
::OutputDebugString(strDebug.c_str());
|
||||||
|
#endif
|
||||||
wxLogStderr::DoLogString(szString, t);
|
wxLogStderr::DoLogString(szString, t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue