summaryrefslogtreecommitdiff
path: root/misc/MinimalSimpleFormatter.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-05-11 15:32:13 -0600
committerbd-912 <bdunahu@colostate.edu>2024-05-11 15:32:13 -0600
commit5677447c250dcf0c970fe7ce4ac51f47bf6d6da0 (patch)
treea5392fc636f01a4e517a211f557d5549444fd7e1 /misc/MinimalSimpleFormatter.java
parent2a40b613252eb3d7a95624957dca61fdfa30dc2a (diff)
Changed SymbolTable to throw and exception when searching for missing entries
Diffstat (limited to 'misc/MinimalSimpleFormatter.java')
-rw-r--r--misc/MinimalSimpleFormatter.java2
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 "";