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:
parent
8f619f337b
commit
d499ee53c9
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ public final class Ln {
|
|||
DEBUG, INFO, WARN, ERROR
|
||||
}
|
||||
|
||||
private static Level threshold;
|
||||
private static Level threshold = Level.INFO;
|
||||
|
||||
private Ln() {
|
||||
// not instantiable
|
||||
|
|
Loading…
Reference in a new issue