From: Paul Querna Date: Fri, 27 May 2005 20:23:08 +0000 (+0000) Subject: - Put a prefix on this error message to have a chance of finding it in the source... X-Git-Tag: 2.1.5~62 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f96c9bb293b7c006b9a8cd1d06084f737c7a1519;p=apache - Put a prefix on this error message to have a chance of finding it in the source. Just stuffing the parser error buffer into the error log is not helpful if I didn't know where it came from. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178818 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util_xml.c b/server/util_xml.c index 09f2c1344b..e2d9fce8c8 100644 --- a/server/util_xml.c +++ b/server/util_xml.c @@ -120,7 +120,7 @@ AP_DECLARE(int) ap_xml_parse_input(request_rec * r, apr_xml_doc **pdoc) parser_error: (void) apr_xml_parser_geterror(parser, errbuf, sizeof(errbuf)); ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, - "%s", errbuf); + "XML Parser Error: %s", errbuf); /* FALLTHRU */