Hi all,
This is my first try with mina, anice software.
I am running 2.0 rc1 and I find the following constructor in LoggingFilter:

public LoggingFilter(String name) {
        if (name == null) {
            this.name = LoggingFilter.class.getName();
        } else {
            this.name = name;
        }

        logger = LoggerFactory.getLogger(name);
    }

The line
logger = LoggerFactory.getLogger(name);

-should not be
logger = LoggerFactory.getLogger(this.name);
since that the parameter name can be null?
Maybe I'm wrong.
Thanks.

[]S José Vilmar Estácio de Souza
http://www.informal.com.br
Msn:[email protected] Skype:jvilmar
Twitter: http://www.twitter.com/jvesouza
Phone: +55 21-2555-2650 Cel: +55 21-8868-0859

Reply via email to