diff --git a/common/confirm.cpp b/common/confirm.cpp index ad1819a6ba..1e1c33eb5e 100644 --- a/common/confirm.cpp +++ b/common/confirm.cpp @@ -281,7 +281,7 @@ void DisplayError( wxWindow* aParent, const wxString& aText, int aDisplayTime ) { if( !wxTheApp || !wxTheApp->IsMainLoopRunning() ) { - wxLogDebug( "%s", aText ); + wxLogError( "%s", aText ); return; } @@ -300,7 +300,7 @@ void DisplayErrorMessage( wxWindow* aParent, const wxString& aText, const wxStri { if( !wxTheApp || !wxTheApp->IsMainLoopRunning() ) { - wxLogDebug( "%s %s", aText, aExtraInfo ); + wxLogError( "%s %s", aText, aExtraInfo ); return; }