From 7cb0939d582003e2a419a337cfd092525ada3309 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 26 May 2022 09:40:57 +0200 Subject: [PATCH] Lower the level of some log messages. --- src/lib/dcp_video.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/dcp_video.cc b/src/lib/dcp_video.cc index 50d33e9d5..14f23bd37 100644 --- a/src/lib/dcp_video.cc +++ b/src/lib/dcp_video.cc @@ -132,7 +132,7 @@ DCPVideo::encode_locally () const ArrayData enc = {}; /* This was empirically derived by a user: see #1902 */ int const minimum_size = 16384; - LOG_GENERAL ("Using minimum frame size %1", minimum_size); + LOG_DEBUG_ENCODE("Using minimum frame size %1", minimum_size); auto xyz = convert_to_xyz (_frame, boost::bind(&Log::dcp_log, dcpomatic_log.get(), _1, _2)); int noise_amount = 2; @@ -148,7 +148,7 @@ DCPVideo::encode_locally () const ); if (enc.size() >= minimum_size) { - LOG_GENERAL (N_("Frame %1 encoded size was OK (%2)"), _index, enc.size()); + LOG_DEBUG_ENCODE(N_("Frame %1 encoded size was OK (%2)"), _index, enc.size()); break; } -- 2.30.2