diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-12-03 09:27:53 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-12-03 09:27:53 +0000 |
| commit | e2f56d8e5428e1d18596c229aae8b62cd6bc9ecc (patch) | |
| tree | 85fa6c010c560b48324cdc4280205970d3eab03d | |
| parent | ad1e5f3674fd89304bffc1523f2a464cc8f7d022 (diff) | |
Hand-apply 63b62aa703c2628b27b577114081b265f237dadb from master;
fix missing parameter in log entry.
| -rw-r--r-- | TO_PORT | 1 | ||||
| -rw-r--r-- | src/lib/encoder.cc | 2 |
2 files changed, 1 insertions, 2 deletions
@@ -1,4 +1,3 @@ -05c421741efc303a3248faeae56f9a23e280eeb9 65c5c51161a862cb77198472940b756b2d18aa87 6b811225da349c1a0bc570b886833c31bb5744f7 0b2c8aee63b691a08b01d9d59e810c2e6c1e6c1b diff --git a/src/lib/encoder.cc b/src/lib/encoder.cc index 0c9faa70d..96fda7cc2 100644 --- a/src/lib/encoder.cc +++ b/src/lib/encoder.cc @@ -80,7 +80,7 @@ Encoder::~Encoder () void Encoder::add_worker_threads (ServerDescription d) { - LOG_GENERAL (N_("Adding %1 worker threads for remote %2"), d.host_name ()); + LOG_GENERAL (N_("Adding %1 worker threads for remote %2"), d.threads(), d.host_name ()); for (int i = 0; i < d.threads(); ++i) { _threads.push_back (new boost::thread (boost::bind (&Encoder::encoder_thread, this, d))); } |
