summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2006-02-23 08:14:00 +0000
committerDaniel Veillard <veillard@src.gnome.org>2006-02-23 08:14:00 +0000
commit890b5492c62427dbbda5025725fab9b96f375512 (patch)
tree5049baf46fd95e62377942c474da391d5fa8aafd
parent634ec27a804bbdf13b5baa7d5883524c5a4bd189 (diff)
downloadlibxml2-890b5492c62427dbbda5025725fab9b96f375512.tar.gz
improve catalog debugging message patch from Rick Jones Daniel
* catalog.c: improve catalog debugging message patch from Rick Jones Daniel
-rw-r--r--ChangeLog4
-rw-r--r--catalog.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ec47fcb..a78326be 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/catalog.c b/catalog.c
index 202c288f..8f8898bb 100644
--- a/catalog.c
+++ b/catalog.c
@@ -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));
}