You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by Jeff Martin <je...@synamic.co.uk> on 2000/09/21 20:06:34 UTC

XmlLogger

Anyone got any ideas why the cast to a BuildLogger at line 438 of Main.java
is failing as I'm getting this

"The specified logger class org.apache.tools.ant.XmlLogger does not
implement the BuildLogger interface"

which is kinda annoying?


Re: XmlLogger

Posted by Nico Seessle <ni...@seessle.de>.
----- Original Message -----
From: "Jeff Martin" <je...@synamic.co.uk>
To: "Ant-Dev (E-mail)" <an...@jakarta.apache.org>
Sent: Thursday, September 21, 2000 8:06 PM
Subject: XmlLogger


> Anyone got any ideas why the cast to a BuildLogger at line 438 of
Main.java
> is failing as I'm getting this
>
> "The specified logger class org.apache.tools.ant.XmlLogger does not
> implement the BuildLogger interface"
>
> which is kinda annoying?
>

Because it's an BuildListener and not a BuildLogger as the name implies
(BuildLogger being an extension of BuildListener and XmlLogger implementing
BuildListener)? Getting kind of confusing, better now?

Nico