]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/log.cpp
[1231183] 'cleanup: mismatched indentation' and other cleanings.
[wxWidgets.git] / src / common / log.cpp
index 0471c87c7646952b51226ba21b4c30d627a927e2..fe4aff00ae63d45d4b1df8a45a8f62e44ca13c11 100644 (file)
@@ -536,6 +536,31 @@ void wxLogBuffer::Flush()
     }
 }
 
+void wxLogBuffer::DoLog(wxLogLevel level, const wxChar *szString, time_t t)
+{
+    switch ( level )
+    {
+        case wxLOG_Trace:
+        case wxLOG_Debug:
+#ifdef __WXDEBUG__
+            // don't put debug messages in the buffer, we don't want to show
+            // them to the user in a msg box, log them immediately
+            {
+                wxString str;
+                TimeStamp(&str);
+                str += szString;
+
+                wxMessageOutputDebug dbgout;
+                dbgout.Printf(_T("%s\n"), str.c_str());
+            }
+#endif // __WXDEBUG__
+            break;
+
+        default:
+            wxLog::DoLog(level, szString, t);
+    }
+}
+
 void wxLogBuffer::DoLogString(const wxChar *szString, time_t WXUNUSED(t))
 {
     m_str << szString << _T("\n");
@@ -770,7 +795,7 @@ const wxChar *wxSysErrorMsg(unsigned long nErrCode)
         // if this happens, something is seriously wrong, so don't use _() here
         // for safety
         wxSprintf(s_szBuf, _T("unknown error %lx"), nErrCode);
-               return s_szBuf;
+        return s_szBuf;
     }