summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-04-23 20:46:45 +0100
committerCarl Hetherington <cth@carlh.net>2013-04-23 20:46:45 +0100
commitbe1862fefb1378c78bcc4bd6334694797755ea47 (patch)
tree4e27f309ffe2cb48e8f13b8187361860b7f4152e /src/lib
parent425ef773dbf91d2fecd8e2fbdc20becbfbda46f8 (diff)
Add a test; turn off verbose logging by default in makedcp; improve log message.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/matcher.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/matcher.cc b/src/lib/matcher.cc
index 34ddc86d6..dd0312f67 100644
--- a/src/lib/matcher.cc
+++ b/src/lib/matcher.cc
@@ -94,7 +94,11 @@ Matcher::process_audio (boost::shared_ptr<AudioBuffers> b, double t)
{
_channels = b->channels ();
- _log->log (String::compose ("Matcher audio @ %1 [video=%2, audio=%3, pending_audio=%4]", t, _video_frames, _audio_frames, _pending_audio.size()));
+ _log->log (String::compose (
+ "Matcher audio (%1 frames) @ %2 [video=%3, audio=%4, pending_audio=%5]",
+ b->frames(), t, _video_frames, _audio_frames, _pending_audio.size()
+ )
+ );
if (!_first_input) {
_first_input = t;