From f77ed1c69258c5d5e25877b3e0d6be8763d1118c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 6 Feb 2012 14:35:00 +0000 Subject: [PATCH] even more debugging info for zth git-svn-id: svn://localhost/ardour2/branches/3.0@11454 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/midi_diskstream.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/midi_diskstream.cc b/libs/ardour/midi_diskstream.cc index 03188113ef..79ef361e1f 100644 --- a/libs/ardour/midi_diskstream.cc +++ b/libs/ardour/midi_diskstream.cc @@ -455,7 +455,7 @@ MidiDiskstream::commit (framecnt_t playback_distance) uint32_t frames_read = g_atomic_int_get(&_frames_read_from_ringbuffer); uint32_t frames_written = g_atomic_int_get(&_frames_written_to_ringbuffer); - cerr << "MDS written: " << frames_written << " - read: " << frames_read << + cerr << name() << " MDS written: " << frames_written << " - read: " << frames_read << " = " << frames_written - frames_read << " + " << playback_distance << " < " << midi_readahead << " = " << need_butler << ")" << endl;