From 890b5492c62427dbbda5025725fab9b96f375512 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Thu, 23 Feb 2006 08:14:00 +0000 Subject: [PATCH] improve catalog debugging message patch from Rick Jones Daniel * catalog.c: improve catalog debugging message patch from Rick Jones Daniel --- ChangeLog | 4 ++++ catalog.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 + + * catalog.c: improve catalog debugging message patch from Rick Jones + Wed Feb 22 16:09:10 CET 2006 Daniel Veillard * 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)); }