Initialize a default log level

Clean up has been broken by 3df63c579d.

The verbosity was correctly initialized for the Server process, but not
for the CleanUp process.

To avoid the problem, initialize a default log level.
This commit is contained in:
Romain Vimont 2020-05-27 12:05:29 +02:00
parent 8f619f337b
commit d499ee53c9

View file

@ -15,7 +15,7 @@ public final class Ln {
DEBUG, INFO, WARN, ERROR DEBUG, INFO, WARN, ERROR
} }
private static Level threshold; private static Level threshold = Level.INFO;
private Ln() { private Ln() {
// not instantiable // not instantiable