diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-05-11 15:32:13 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-05-11 15:32:13 -0600 |
commit | 5677447c250dcf0c970fe7ce4ac51f47bf6d6da0 (patch) | |
tree | a5392fc636f01a4e517a211f557d5549444fd7e1 /misc/MinimalSimpleFormatter.java | |
parent | 2a40b613252eb3d7a95624957dca61fdfa30dc2a (diff) |
Changed SymbolTable to throw and exception when searching for missing entries
Diffstat (limited to 'misc/MinimalSimpleFormatter.java')
-rw-r--r-- | misc/MinimalSimpleFormatter.java | 2 |
1 files changed, 1 insertions, 1 deletions
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 ""; |