Create a new Logger. Create a logger for the named component.
The bundle name is passed to allow the implementation
to properly find and construct the internationalization bundle.
This operation is executed as a privileged action to allow
permission access for the following operations:
ServerLogManager.initializeServerLogger
return (LoggerJDK14) AccessController.doPrivileged (
new PrivilegedAction () {
public Object run () {
LoggerJDK14 result = new LoggerJDK14(absoluteLoggerName, bundleName);
//Handlers and Formatters will be set in addLogger().
//ServerLogManager.initializeServerLogger(result);
return result;
}
}
);