summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-05-03 17:23:49 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-05-04 18:48:17 -0600
commit447b473a1d94fdf4f091b6280e5e44f7b1c66e23 (patch)
tree4a1d03d6018ab40402cd8f136b7f8b8710234a91 /libs
parentf6496524a41d2f6964cebe8648998f888a5dc7ec (diff)
slight better warning/debug message for a stuck note to-be-deleted
Diffstat (limited to 'libs')
-rw-r--r--libs/evoral/Sequence.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/evoral/Sequence.cc b/libs/evoral/Sequence.cc
index 82e7c02850..d9e9caa7bf 100644
--- a/libs/evoral/Sequence.cc
+++ b/libs/evoral/Sequence.cc
@@ -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: