From f96c9bb293b7c006b9a8cd1d06084f737c7a1519 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Fri, 27 May 2005 20:23:08 +0000 Subject: [PATCH] - 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 --- server/util_xml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.50.1