Re: Removing logging from ivy

2008-09-26 Thread Xavier Hanin
On Wed, Sep 24, 2008 at 9:17 PM, Ilya Sterin <[EMAIL PROTECTED]> wrote: > I'm using ivy embedded in a library. Great! > Because the library encapsulates > everything, we wanted to remove all logging... > > Doing this... > > Ivy ivy = Ivy.newInstance(); > MessageLogger logger = new DefaultMessage

Removing logging from ivy

2008-09-24 Thread Ilya Sterin
I'm using ivy embedded in a library. Because the library encapsulates everything, we wanted to remove all logging... Doing this... Ivy ivy = Ivy.newInstance(); MessageLogger logger = new DefaultMessageLogger(0); ivy.getLoggerEngine().setDefaultLogger(logger); Removes the logging, but the transf