diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-08-19 01:21:15 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-08-19 01:21:15 +0100 |
| commit | d482f805bc113ddf4c504e86125c648113321c8a (patch) | |
| tree | 0be2f15cd7f5462c7ad728eb75f1530ac41f0520 /src/lib/writer.cc | |
| parent | c450fb19ea21dba0a6cade81e829262e7078e9df (diff) | |
Some work on rationalising and tidying up timing logging.
Diffstat (limited to 'src/lib/writer.cc')
| -rw-r--r-- | src/lib/writer.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/writer.cc b/src/lib/writer.cc index 2ff93d74a..91263fe25 100644 --- a/src/lib/writer.cc +++ b/src/lib/writer.cc @@ -321,9 +321,9 @@ try } /* Nothing to do: wait until something happens which may indicate that we do */ - LOG_TIMING (N_("writer sleeps with a queue of %1"), _queue.size()); + LOG_TIMING (N_("writer-sleep queue=%1"), _queue.size()); _empty_condition.wait (lock); - LOG_TIMING (N_("writer wakes with a queue of %1"), _queue.size()); + LOG_TIMING (N_("writer-wake queue=%1"), _queue.size()); } if (_finish && _queue.empty()) { |
