From 5677447c250dcf0c970fe7ce4ac51f47bf6d6da0 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Sat, 11 May 2024 15:32:13 -0600 Subject: Changed SymbolTable to throw and exception when searching for missing entries --- 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 741863d..a325185 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 (false) + if (true) return record.getLevel() + ": " + formatMessage(record) + "\n"; else return ""; -- cgit v1.2.3