diff --git a/src/AudacityApp.cpp b/src/AudacityApp.cpp index ed2121a6e..8e64ad3e2 100644 --- a/src/AudacityApp.cpp +++ b/src/AudacityApp.cpp @@ -1117,6 +1117,10 @@ bool AudacityApp::OnInit() wxFrame *temporarywindow = new wxFrame(NULL, -1, wxT("temporarytopwindow")); SetTopWindow(temporarywindow); + wxLog::FlushActive(); // Make sure all log messages are written. + + wxLogMessage(wxString::Format(wxT("Audacity %s"), AUDACITY_VERSION_STRING)); + // Initialize the ModuleManager ModuleManager::Initialize(); @@ -1398,8 +1402,6 @@ bool AudacityApp::OnInit() mWindowRectAlreadySaved = FALSE; - wxLog::FlushActive(); // Make sure all log messages are written. - mTimer = new wxTimer(this, kAudacityAppTimerID); mTimer->Start(200); return TRUE;