summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-01-13 00:43:11 +0000
committerCarl Hetherington <cth@carlh.net>2013-01-13 00:43:11 +0000
commit36cc9db860a33418cde77949503ad0a734ddc0fa (patch)
tree75f28a35e75bb6e0834eb8e70b6a19b667be2597 /src
parentd511283e13c697113cc4aeabbd90e72a56941e72 (diff)
Fix content length logging.
Diffstat (limited to 'src')
-rw-r--r--src/lib/film.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/film.cc b/src/lib/film.cc
index 3985baf04..9fd8c7400 100644
--- a/src/lib/film.cc
+++ b/src/lib/film.cc
@@ -253,7 +253,7 @@ Film::make_dcp (bool transcode)
gethostname (buffer, sizeof (buffer));
log()->log (String::compose ("Starting to make DCP on %1", buffer));
log()->log (String::compose ("Content is %1; type %2", content_path(), (content_type() == STILL ? "still" : "video")));
- log()->log (String::compose ("Content length %1", length()));
+ log()->log (String::compose ("Content length %1", length().get()));
log()->log (String::compose ("Content digest %1", content_digest()));
log()->log (String::compose ("%1 threads", Config::instance()->num_local_encoding_threads()));
log()->log (String::compose ("J2K bandwidth %1", j2k_bandwidth()));