Leo,
public final class CommonsLoggerI'm not sure this adds anything to A-F. We already had a means of delegation to Commons-Logging.
implements Logger, Log
{
//underlying implementation to delegate to
private final Log m_logger;
/**
* Create a logger that delegates to specified Log.
*
* @param logImpl the Commons-Logging Log to delegate to
*/
public CommonsLogger( Log logImpl )
{
m_logger = logImpl;
}
Be careful dude as the static and instance worlds of logging are idealogically opposed.
- Paul
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]