Hi Eung-Ju.

> This is patch for LogEnabled James. compilable but not tested.

Applied, thanks. It passed some simple tests, and a quick eyeball didn't
show anything that I thought would break.

This is an important change, because it keeps us in line with the latest
logger developments in Avalon. 99% of the changes were in import lines, or
changing "extends AbstractLoggable" to "extends AbstractLogEnabled".

There were a few other changes, of the type:
if ( xxx instanceof Loggable) {
    ((Loggable)xxx).setLogger( logger);
}
became:
if ( xxx instanceof LogEnabled ) {
    ((LogEnabled)xxx).enableLogging( logger);
}

>
> James need some more code cleanup like duplicated imports, not necessary
> imports..... :-)
>
For sure. If noone will be too heavily impacted, I could run "optimise
imports" on the whole tree. (Any objections?)

ciao
Daz




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to