Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
Set java.util.Logger to ERROR
Browse files Browse the repository at this point in the history
  • Loading branch information
fbiville committed Sep 13, 2021
1 parent 9cade79 commit 23f7363
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,16 @@
import org.liquigraph.core.api.Liquigraph;
import org.liquigraph.core.api.LiquigraphApi;

import java.util.logging.Level;
import java.util.logging.Logger;

public final class LiquigraphCli {

static {
Logger root = Logger.getLogger("");
root.setLevel(Level.SEVERE);
}

private final LiquigraphApi liquigraph;

private final LiquigraphCommandRegistry registry;
Expand Down

0 comments on commit 23f7363

Please sign in to comment.