Wraps the java logger.
- replaces parent handlers with :
- 1
ConsoleHandler - 1
FileHandler
- 1
- adds pretty display of:
- thread name
- method name
- can (should) customize with
LogU.remake(...):- log file directory
- project package name
- prefix, filters stack, to print method name, thereby skipping over the
min-logmethods. - admittedly, this is a slightly wonky approach.
- prefix, filters stack, to print method name, thereby skipping over the
- format:
- default:
"[%1$tF %1$tT] [%2$-7s] [%3$-20s] %4$-120s [%5$s]\n"
- default:
- using
"[%1$tF %1$tT] [%2$-7s] [%3$-14s] %4$-180s [%5$s]\n" - note that the
[START > ]is inclueded in the180s.
