summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-05-07 19:18:12 -0600
committerbd-912 <bdunahu@colostate.edu>2024-05-07 19:18:12 -0600
commit6a27fdf4276772544d20074ab9abd02dab9c0a20 (patch)
tree62d897eb1467dc9500003032dab6744c0c03ab74
parente4f89099939c9f61818ecff2d3ca48580f461e61 (diff)
Turn off logger
-rw-r--r--misc/MinimalSimpleFormatter.java2
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 "";