From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Mon, 21 Mar 2011 10:59:59 +0000 (+0000)
Subject: Allow using milliseconds in wxLog timestamp.
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/019044877af14a87e03ab3b178a3d1d8dd4d5a47

Allow using milliseconds in wxLog timestamp.

Use wxDateTime::UNow() instead of time() and wxDateTime::Format() instead of
localtime() to make it possible to use "%l" specifier in wxLog time stamp.

Closes #13059.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/docs/changes.txt b/docs/changes.txt
index 9b8f73900a..014d1bb272 100644
--- a/docs/changes.txt
+++ b/docs/changes.txt
@@ -451,6 +451,7 @@ All:
 - Added wxStack<> template class.
 - Added precision parameter to wxString::From[C]Double().
 - Added wxThread::Wait() and Delete() "wait mode" parameter (Catalin Raceanu).
+- Allow showing milliseconds in wxLog time stamps (tan).
 
 Unix:
 
diff --git a/src/common/log.cpp b/src/common/log.cpp
index dd0f26e1d6..c30b582075 100644
--- a/src/common/log.cpp
+++ b/src/common/log.cpp
@@ -676,16 +676,8 @@ void wxLog::TimeStamp(wxString *str)
 #if wxUSE_DATETIME
     if ( !ms_timestamp.empty() )
     {
-        wxChar buf[256];
-        time_t timeNow;
-        (void)time(&timeNow);
-
-        struct tm tm;
-        wxStrftime(buf, WXSIZEOF(buf),
-                    ms_timestamp, wxLocaltime_r(&timeNow, &tm));
-
-        str->Empty();
-        *str << buf << wxS(": ");
+        *str = wxDateTime::UNow().Format(ms_timestamp);
+        *str += wxS(": ");
     }
 #endif // wxUSE_DATETIME
 }