From 12520b3e79d1050f8dd7ada09a06d49f19bd5401 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Tue, 23 Apr 2024 15:59:01 -0600 Subject: Fix first of a few new minor bugs introduced with rewrite --- misc/MinimalSimpleFormatter.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'misc/MinimalSimpleFormatter.java') diff --git a/misc/MinimalSimpleFormatter.java b/misc/MinimalSimpleFormatter.java index aa0efdf..3a42398 100644 --- a/misc/MinimalSimpleFormatter.java +++ b/misc/MinimalSimpleFormatter.java @@ -7,7 +7,6 @@ import java.util.logging.SimpleFormatter; public class MinimalSimpleFormatter extends SimpleFormatter { @Override public String format(LogRecord record) { - return ""; - //return record.getLevel() + ": " + formatMessage(record) + "\n"; + return record.getLevel() + ": " + formatMessage(record) + "\n"; } } -- cgit v1.2.3