<%-- Edit JDK Logger levels. --%>
Set logging levels for both Loggers and their Handlers.| Loggers inherits settings from their ancestors. They also inherit the _Handlers_ attached to their ancestors. For more information, see the logging [link:http://java.sun.com/javase/6/docs/api/java/util/logging/package-summary.html API] and [link:http://java.sun.com/j2se/1.4.2/docs/guide/util/logging/overview.html overview].| The root logger is named with an empty string, and appears first in the listing below. The logger named this [link:http://java.sun.com/javase/6/docs/api/java/util/logging/Logger.html#GLOBAL_LOGGER_NAME global] is meant for only the most casual uses, and should likely be avoided.| This application does some custom setup of logging upon startup: a FileHandler is created and attached to the 'base' package. That is, a logging file specific to this application is created, and is _not_ shared with any other application. See the StartupLoggingConfig class for more information. [A Faire]

JRE Loggers
Name Level Handlers
${item.key} [Empty String - Root Logger] ${item.value.level} ... ${handler.class.name}(${handler.level})