summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-07-03 15:36:04 +0200
committerCarl Hetherington <cth@carlh.net>2025-07-03 15:36:04 +0200
commitc4f7b352e6d4b774e2305011e3351404f53875b1 (patch)
tree8b3c2c37a88eb1200cdf7a9e917614e653989c71
parente1979df0cd7f20b1f106095a31624566ea6bcbbd (diff)
Add another log.
-rw-r--r--src/lib/player.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/player.cc b/src/lib/player.cc
index 516a66ee2..e3b5fdb20 100644
--- a/src/lib/player.cc
+++ b/src/lib/player.cc
@@ -1010,6 +1010,7 @@ Player::emit_video_until(DCPTime time)
) {
frame(left.first, next);
frame(right.first, next);
+ LOG_DEBUG_PLAYER("Content %1 and %2 selected for DCP %3 (ages %4 %5)", to_string(left.second), to_string(right.second), to_string(next), to_string(left.second - next), to_string(right.second - next));
} else if (both.first && (both.second - next) < age_threshold(both)) {
frame(both.first, next);
LOG_DEBUG_PLAYER("Content %1 selected for DCP %2 (age %3)", to_string(both.second), to_string(next), to_string(both.second - next));