persistence@glassfish.java.net

Re: Code review for: [Issue 1107] Logger defined by a property doesn't work]

From: Wonseok Kim <guruwons_at_gmail.com>
Date: Fri, 13 Oct 2006 03:32:42 +0900

Marina,

On 10/13/06, Marina Vatkina <Marina.Vatkina_at_sun.com> wrote:
>
>
> Tom, about the new useParentLevel() - will it be OFF or INFO by default,
> if you don't specify the level in SE? Can you check?
>
>
For DefaultSessionLog it's already setting level as INFO by default like
below.

    public DefaultSessionLog() {
        super();
        this.level = INFO;
    }

For JavaLog, it will follow the JRE environment or user-specified
logging.properties. JRE default is INFO.

- Wonseok