From: Vadim Zeitlin Date: Mon, 17 Dec 2001 12:17:27 +0000 (+0000) Subject: don't discard the informational log messages given after an error one in X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a250392c4889a703af2e3ed7ac1c2cdd7ce19dc8?hp=3355efa93c7ef81088344b7ddbc7355c4730bb57 don't discard the informational log messages given after an error one in wxLogGui (only those given before) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13057 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/logg.cpp b/src/generic/logg.cpp index 155628d827..5a071db228 100644 --- a/src/generic/logg.cpp +++ b/src/generic/logg.cpp @@ -310,12 +310,10 @@ void wxLogGui::DoLog(wxLogLevel level, const wxChar *szString, time_t t) if ( GetVerbose() ) case wxLOG_Message: { - if ( !m_bErrors ) { - m_aMessages.Add(szString); - m_aSeverity.Add(wxLOG_Message); - m_aTimes.Add((long)t); - m_bHasMessages = TRUE; - } + m_aMessages.Add(szString); + m_aSeverity.Add(wxLOG_Message); + m_aTimes.Add((long)t); + m_bHasMessages = TRUE; } break;