slight better warning/debug message for a stuck note to-be-deleted

This commit is contained in:
Paul Davis
2020-05-03 17:23:49 -06:00
parent f6496524a4
commit 447b473a1d

View File

@@ -669,7 +669,7 @@ Sequence<Time>::end_write (StuckNoteOption option, Time when)
case Relax:
break;
case DeleteStuckNotes:
cerr << "WARNING: Stuck note lost: " << (*n)->note() << endl;
cerr << "WARNING: Stuck note lost (end was " << when << "): " << (**n) << endl;
_notes.erase(n);
break;
case ResolveStuckNotes: