From 917846ad0036df0e48bb937ba6206a2905b4a831 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Sat, 11 May 2024 16:30:40 -0600 Subject: Turn off logger --- misc/MinimalSimpleFormatter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc/MinimalSimpleFormatter.java') 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 ""; -- cgit v1.2.3