summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2016-02-08 11:27:04 +0000
committerMichael Drake <michael.drake@codethink.co.uk>2016-02-08 11:27:04 +0000
commit63fb2cbdc123b546c1b2681529c1fbefcbc09eaa (patch)
tree4317c86c92a6e37ed7b4f7a4c28fede64df7e0a4
parent67bdf81ca9a6d73f11b6f86232c42566994def53 (diff)
downloadnetsurf-63fb2cbdc123b546c1b2681529c1fbefcbc09eaa.tar.gz
netsurf-63fb2cbdc123b546c1b2681529c1fbefcbc09eaa.tar.bz2
Add URL to llcache object destruction logging.
-rw-r--r--content/llcache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/content/llcache.c b/content/llcache.c
index 894d0e063..444c543e6 100644
--- a/content/llcache.c
+++ b/content/llcache.c
@@ -933,7 +933,8 @@ static nserror llcache_object_destroy(llcache_object *object)
{
size_t i;
- LLCACHE_LOG("Destroying object %p", object);
+ LLCACHE_LOG("Destroying object %p, %s", object,
+ nsurl_access(object->url));
if (object->source_data != NULL) {
if (object->store_state == LLCACHE_STATE_DISC) {