diff data/model/Model.cpp @ 1561:d3814e07b8aa

Debug bits
author Chris Cannam
date Thu, 01 Nov 2018 15:01:41 +0000
parents 9d37c8cf9686
children 70e172e6cc59
line wrap: on
line diff
--- a/data/model/Model.cpp	Thu Nov 01 15:01:32 2018 +0000
+++ b/data/model/Model.cpp	Thu Nov 01 15:01:41 2018 +0000
@@ -161,14 +161,15 @@
 int
 Model::getAlignmentCompletion() const
 {
-//    SVDEBUG << "Model::getAlignmentCompletion" << endl;
+//    SVDEBUG << "Model::getAlignmentCompletion: m_alignment = "
+//            << m_alignment << endl;
     if (!m_alignment) {
         if (m_sourceModel) return m_sourceModel->getAlignmentCompletion();
         else return 100;
     }
     int completion = 0;
     (void)m_alignment->isReady(&completion);
-//    cerr << " -> " << completion << endl;
+//    SVDEBUG << " -> " << completion << endl;
     return completion;
 }