improve catalog debugging message patch from Rick Jones Daniel

* catalog.c: improve catalog debugging message patch from Rick Jones
Daniel
This commit is contained in:
Daniel Veillard 2006-02-23 08:14:00 +00:00
parent 634ec27a80
commit 890b5492c6
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Thu Feb 23 09:12:27 CET 2006 Daniel Veillard <daniel@veillard.com>
* catalog.c: improve catalog debugging message patch from Rick Jones
Wed Feb 22 16:09:10 CET 2006 Daniel Veillard <daniel@veillard.com>
* python/types.c: Nic Ferrier found debug statement left in the

View File

@ -1648,7 +1648,8 @@ xmlCatalogXMLResolve(xmlCatalogEntryPtr catal, const xmlChar *pubID,
if (xmlStrEqual(sysID, cur->name)) {
if (xmlDebugCatalogs)
xmlGenericError(xmlGenericErrorContext,
"Found system match %s\n", cur->name);
"Found system match %s, using %s\n",
cur->name, cur->URL);
catal->depth--;
return(xmlStrdup(cur->URL));
}