From 6a27fdf4276772544d20074ab9abd02dab9c0a20 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Tue, 7 May 2024 19:18:12 -0600 Subject: Turn off logger --- misc/MinimalSimpleFormatter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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