# HG changeset patch # User Chris Cannam # Date 1488887309 0 # Node ID 72b4870f0e6b0d3bc279b77cfb550a0c3f846f52 # Parent 821aba42c1bb7076625fb94434da97293c3d5df4 Debug output diff -r 821aba42c1bb -r 72b4870f0e6b framework/MainWindowBase.cpp --- a/framework/MainWindowBase.cpp Mon Mar 06 17:37:23 2017 +0000 +++ b/framework/MainWindowBase.cpp Tue Mar 07 11:48:29 2017 +0000 @@ -1405,6 +1405,7 @@ } catch (const InsufficientDiscSpace &e) { emit hideSplash(); m_openingAudioFile = false; + SVCERR << "MainWindowBase: Caught InsufficientDiscSpace in file open" << endl; QMessageBox::critical (this, tr("Not enough disc space"), tr("Not enough disc space
There doesn't appear to be enough spare disc space to accommodate any necessary temporary files.
Please clear some space and try again.
").arg(e.what())); @@ -1412,6 +1413,7 @@ } catch (const std::bad_alloc &e) { // reader may have rethrown this after cleaning up emit hideSplash(); m_openingAudioFile = false; + SVCERR << "MainWindowBase: Caught bad_alloc in file open" << endl; QMessageBox::critical (this, tr("Not enough memory"), tr("Not enough memoryThere doesn't appear to be enough memory to accommodate any necessary temporary data.
"));