diff options
author | corvid <devnull@localhost> | 2014-10-10 16:53:40 +0000 |
---|---|---|
committer | corvid <devnull@localhost> | 2014-10-10 16:53:40 +0000 |
commit | 99b330db77308b5b21fe2978c3fe6ce60b177110 (patch) | |
tree | 236fb43167aada2e0981ed6e6c12b6ef55677e27 /src/cache.c | |
parent | c26395575cf458bcf7895a63bc94c2aed9806ca2 (diff) |
URL in MSG
Diffstat (limited to 'src/cache.c')
-rw-r--r-- | src/cache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cache.c b/src/cache.c index 1100b718..17ddbc25 100644 --- a/src/cache.c +++ b/src/cache.c @@ -870,7 +870,8 @@ static void Cache_finish_msg(CacheEntry_t *entry) if (eol) { char *status_line = dStrndup(entry->Header->str, eol - entry->Header->str); - MSG_HTTP("Body was empty. Server sent status: %s\n", status_line); + MSG_HTTP("Body of %s was empty. Server sent status: %s\n", + URL_STR_(entry->Url), status_line); dFree(status_line); } } |