Skip to content

Commit

Permalink
Add more verbosity options
Browse files Browse the repository at this point in the history
  • Loading branch information
Henry Coles committed Sep 17, 2021
1 parent 8b95cc4 commit 05b5e7a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Read all about it at http://pitest.org
### 1.7.1 (unreleased)

* #932 Improve switch mutation descriptions
* #934 Configure console output verbosity

### 1.7.0

Expand Down
7 changes: 5 additions & 2 deletions pitest/src/main/java/org/pitest/util/Verbosity.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@

public enum Verbosity {
QUIET(MinionLogging.DONT_SHOW, false, Level.SEVERE),
VERBOSE(MinionLogging.SHOW, true, Level.FINEST),
DEFAULT(MinionLogging.DONT_SHOW, true, Level.INFO);
QUIET_WITH_PROGRESS(MinionLogging.DONT_SHOW, true, Level.SEVERE),
DEFAULT(MinionLogging.DONT_SHOW, true, Level.INFO),
NO_SPINNER(MinionLogging.DONT_SHOW, false, Level.INFO),
VERBOSE_NO_SPINNER(MinionLogging.SHOW, false, Level.FINEST),
VERBOSE(MinionLogging.SHOW, true, Level.FINEST);

private final MinionLogging minion;
private final boolean showSpinner;
Expand Down

0 comments on commit 05b5e7a

Please sign in to comment.