[jbossseam-issues] [JBoss JIRA] Closed: (JBSEAM-3952) log-level/logLevel default should be LogLevel.error but it is null

Norman Richards (JIRA) jira-events at lists.jboss.org
Thu Feb 12 19:55:44 EST 2009


     [ https://jira.jboss.org/jira/browse/JBSEAM-3952?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Norman Richards closed JBSEAM-3952.
-----------------------------------

    Fix Version/s: 2.1.2.CR1
       Resolution: Done


Thanks.

> log-level/logLevel default should be LogLevel.error but it is null
> ------------------------------------------------------------------
>
>                 Key: JBSEAM-3952
>                 URL: https://jira.jboss.org/jira/browse/JBSEAM-3952
>             Project: Seam
>          Issue Type: Bug
>    Affects Versions: 2.1.0.SP1, 2.1.1.CR1, 2.1.1.CR2, 2.1.1.GA
>            Reporter: Francisco Jose Peredo Noguez
>            Assignee: Norman Richards
>             Fix For: 2.1.2.CR1
>
>
> In the manual (http://docs.jboss.com/seam/2.1.1.GA/reference/en-US/html/events.html#d0e5611) at 6.12.4.1. Suppressing exception logging one can read: 
> " If the logLevel is not specified, or if an invalid value is configured, then it will default to error. "
> But In org.jboss.seam.exception.Exceptions in the parse method:
>   LogLevel logLevel = LogLevel.error;   <--- THIS LINE IS IRRELEVANT
>             try
>             {
>                logLevel = exception.attributeValue("log-level") != null ?                                     
>                      LogLevel.valueOf(exception.attributeValue("log-level").toLowerCase()) : null;  //<--- THIS 2 LINES SET IT TO NULL
>                      
>                // The logLevel attribute is deprecated! Use log-level instead
>                if (logLevel == null && exception.attributeValue("logLevel") != null)
>                {
>                   logLevel = LogLevel.valueOf(exception.attributeValue("logLevel").toLowerCase());
>                }
> The line (168,169) sets the logLevel to null if it does not find the attribute in the .xml attribute, making the line 165 irrelevant, the actual default becomes "null"
>             

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list