diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-05-11 16:30:40 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-05-11 16:30:40 -0600 |
commit | 917846ad0036df0e48bb937ba6206a2905b4a831 (patch) | |
tree | 3259b161ab79d308ddd5fd1ddacf9bdcf1c9426d | |
parent | 4696e2da8c72f0bcc48808a3eaff78ffde231de9 (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 ""; |