X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ae8023059644509bad01e8a4cbf206221035f7..32956769e9470c617a968ede7da90423897fdaea:/src/common/log.cpp diff --git a/src/common/log.cpp b/src/common/log.cpp index 6e102e6753..7268dddc04 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -543,7 +543,9 @@ wxLogStream::wxLogStream(ostream *ostr) void wxLogStream::DoLogString(const wxChar *szString, time_t WXUNUSED(t)) { - (*m_ostr) << wxConvertWX2MB(szString) << endl; + wxString str; + TimeStamp(&str); + (*m_ostr) << str << wxConvertWX2MB(szString) << endl; } #endif // wxUSE_STD_IOSTREAM