diff options
| author | bd-912 <bdunahu@colostate.edu> | 2024-05-06 00:59:26 -0600 | 
|---|---|---|
| committer | bd-912 <bdunahu@colostate.edu> | 2024-05-06 00:59:26 -0600 | 
| commit | 8e33e2828ffc62238afc32bb2593b8619f586077 (patch) | |
| tree | 60158e69db97739d5e7512210f53c9d2f99fc62d /misc/MinimalSimpleFormatter.java | |
| parent | 925372248bfb45e0027cf71d8d40c26e48261ee5 (diff) | |
Partial implementation for starter Condense
Diffstat (limited to 'misc/MinimalSimpleFormatter.java')
| -rw-r--r-- | misc/MinimalSimpleFormatter.java | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/misc/MinimalSimpleFormatter.java b/misc/MinimalSimpleFormatter.java index 741863d..a325185 100644 --- a/misc/MinimalSimpleFormatter.java +++ b/misc/MinimalSimpleFormatter.java @@ -7,7 +7,7 @@ import java.util.logging.SimpleFormatter;  public class MinimalSimpleFormatter extends SimpleFormatter {      @Override      public String format(LogRecord record) { -        if (false) +        if (true)              return record.getLevel() + ": " + formatMessage(record) + "\n";          else              return ""; | 
