diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-05-07 19:18:12 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-05-07 19:18:12 -0600 |
commit | 6a27fdf4276772544d20074ab9abd02dab9c0a20 (patch) | |
tree | 62d897eb1467dc9500003032dab6744c0c03ab74 | |
parent | e4f89099939c9f61818ecff2d3ca48580f461e61 (diff) |
Turn off logger
-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 a325185..741863d 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 (true) + if (false) return record.getLevel() + ": " + formatMessage(record) + "\n"; else return ""; |