diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-13 00:43:11 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-13 00:43:11 +0000 |
| commit | 36cc9db860a33418cde77949503ad0a734ddc0fa (patch) | |
| tree | 75f28a35e75bb6e0834eb8e70b6a19b667be2597 /src | |
| parent | d511283e13c697113cc4aeabbd90e72a56941e72 (diff) | |
Fix content length logging.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/film.cc | 2 |
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())); |
