summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-05-11 16:30:40 -0600
committerbd-912 <bdunahu@colostate.edu>2024-05-11 16:30:40 -0600
commit917846ad0036df0e48bb937ba6206a2905b4a831 (patch)
tree3259b161ab79d308ddd5fd1ddacf9bdcf1c9426d /misc
parent4696e2da8c72f0bcc48808a3eaff78ffde231de9 (diff)
Turn off logger
Diffstat (limited to 'misc')
-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 "";