Fix wxMSW compilation after the changes of r70086.
Closes #13792.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70088
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
const wxString& msg,
const wxLogRecordInfo& info) const
{
const wxString& msg,
const wxLogRecordInfo& info) const
{
- wxString prefix = FormatTime(info.timestamp);
+ wxString prefix;
+
+ // don't time stamp debug messages under MSW as debug viewers usually
+ // already have an option to do it
+#ifdef __WXMSW__
+ if ( level != wxLOG_Debug && level != wxLOG_Trace )
+#endif // __WXMSW__
+ prefix = FormatTime(info.timestamp);
wxLogFormatter::FormatTime(time_t t) const
{
wxString str;
wxLogFormatter::FormatTime(time_t t) const
{
wxString str;
-
- // don't time stamp debug messages under MSW as debug viewers usually
- // already have an option to do it
-#ifdef __WXMSW__
- if ( level != wxLOG_Debug && level != wxLOG_Trace )
-#endif // __WXMSW__
- wxLog::TimeStamp(&str, t);
+ wxLog::TimeStamp(&str, t);