From b6bd89ef5f894d9b8e6449de873f633b8eab8f8e Mon Sep 17 00:00:00 2001 From: Xavier Hanin Date: Tue, 24 Jan 2006 12:48:50 +0000 Subject: [PATCH] log which parser is used git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@484155 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/fr/jayasoft/ivy/Ivy.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/java/fr/jayasoft/ivy/Ivy.java b/src/java/fr/jayasoft/ivy/Ivy.java index c89ad8b0..9a458d73 100644 --- a/src/java/fr/jayasoft/ivy/Ivy.java +++ b/src/java/fr/jayasoft/ivy/Ivy.java @@ -705,6 +705,7 @@ public class Ivy implements TransferListener { URLResource res = new URLResource(ivySource); ModuleDescriptorParser parser = ModuleDescriptorParserRegistry.getInstance().getParser(res); + Message.verbose("using "+parser+" to parse "+ivySource); try { ModuleDescriptor md = parser.parseDescriptor(this, ivySource, validate);