From: Jeff Trawick Date: Fri, 20 Jun 2003 00:55:02 +0000 (+0000) Subject: add more info to a log message so we know which "read failed" scenario X-Git-Tag: pre_ajp_proxy~1527 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c67ee9d298162005f91587ae1aaccb2616719bbc;p=apache add more info to a log message so we know which "read failed" scenario occurred git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100312 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/metadata/mod_mime_magic.c b/modules/metadata/mod_mime_magic.c index 90b9816922..acdd2582bc 100644 --- a/modules/metadata/mod_mime_magic.c +++ b/modules/metadata/mod_mime_magic.c @@ -2235,7 +2235,7 @@ static int uncompress(request_rec *r, int method, if (n == 0) { apr_pool_destroy(sub_context); ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, - MODNAME ": read failed %s", r->filename); + MODNAME ": read failed from uncompress of %s", r->filename); return -1; } apr_pool_destroy(sub_context);