How to programmatically set Java Logging defaults and override these defaults using logging.properties
The Java Logging APIs provide a number of properties for create and configuring Java loggers. If you plan to create a new Java Logger for your project, it may be very desirable to define a default configuration you logger and handlers. It is also desirable to enable users to override these defaults using the JVM logging.properties file. Why is this desirable? The JVM logging.properties ships with a default configuration. This...