summaryrefslogtreecommitdiff
path: root/src/lib/image_proxy.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-05-23 22:45:06 +0100
committerCarl Hetherington <cth@carlh.net>2014-05-23 22:45:06 +0100
commit8327abf0e5bec38f12f16dab1d5c7b609baf3db0 (patch)
tree677a03531be25a74eb446cac9ae5095d40760439 /src/lib/image_proxy.cc
parent9844cacd02f05bb26b6c37463df62899ab7446a6 (diff)
Tweak logging a bit.
Diffstat (limited to 'src/lib/image_proxy.cc')
-rw-r--r--src/lib/image_proxy.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/image_proxy.cc b/src/lib/image_proxy.cc
index ec5b66555..ced597fff 100644
--- a/src/lib/image_proxy.cc
+++ b/src/lib/image_proxy.cc
@@ -118,7 +118,7 @@ MagickImageProxy::image () const
return _image;
}
- LOG_TIMING ("MagickImageProxy begins read and decode of %1 bytes", _blob.length());
+ LOG_TIMING ("[%1] MagickImageProxy begins read and decode of %2 bytes", boost::this_thread::get_id(), _blob.length());
Magick::Image* magick_image = 0;
try {
@@ -147,7 +147,7 @@ MagickImageProxy::image () const
delete magick_image;
- LOG_TIMING ("MagickImageProxy completes read and decode of %1 bytes", _blob.length());
+ LOG_TIMING ("[%1] MagickImageProxy completes read and decode of %1 bytes", boost::this_thread::get_id(), _blob.length());
return _image;
}