URL configURL = getClass().getResource("/config/JDKLog.properties");
InputStream ins;
try {
ins = configURL.openStream();
if( ins != null )
logMgr.readConfiguration(ins);
else
logger.log( Level.WARNING, "Failed to open JDKLog.properties");
} catch (IOException e) {
// TODO 자동 생성된 catch 블록
e.printStackTrace();
}
---------------------JDKLog.properties-------------------
handlers=java.util.logging.ConsoleHandler
java.util.logging.ConsoleHandler.level=ALL
.level=FINEST