summaryrefslogtreecommitdiff
path: root/src/lib/encoder.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-24 09:49:25 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-24 09:49:25 +0000
commit70cc5012d775536be079fcb75d0c03655ca0e0f2 (patch)
treea041fdcaec25c6c23740f43360b1ee4dc387c48e /src/lib/encoder.cc
parentf77c5378a5f991fd080746e8a3c9c23136816067 (diff)
Tinker with logging.
Diffstat (limited to 'src/lib/encoder.cc')
-rw-r--r--src/lib/encoder.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/encoder.cc b/src/lib/encoder.cc
index 73af11c55..8e8da6229 100644
--- a/src/lib/encoder.cc
+++ b/src/lib/encoder.cc
@@ -77,6 +77,7 @@ Encoder::~Encoder ()
void
Encoder::add_worker_threads (ServerDescription d)
{
+ _film->log()->log (String::compose (N_("Adding %1 worker threads for remote %2"), d.host_name ()));
for (int i = 0; i < d.threads(); ++i) {
_threads.push_back (new boost::thread (boost::bind (&Encoder::encoder_thread, this, d)));
}