summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-05-26 09:40:57 +0200
committerCarl Hetherington <cth@carlh.net>2022-05-26 09:40:57 +0200
commit7cb0939d582003e2a419a337cfd092525ada3309 (patch)
treec5720bacc271e94c3d9d7a4f536f88ec49db2859 /src/lib
parenta00c3110ecbe76e7b456136f2a4b177dfc37daf5 (diff)
Lower the level of some log messages.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/dcp_video.cc4
1 files 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;
}