diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-04-23 15:59:01 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-04-23 15:59:01 -0600 |
commit | 12520b3e79d1050f8dd7ada09a06d49f19bd5401 (patch) | |
tree | 5b6ba110da43ffcec5c8bcbe387ff5a5920cf59c /misc/MinimalSimpleFormatter.java | |
parent | 1cbc6acab2c1bd745649a639db023b0f6c87f821 (diff) |
Fix first of a few new minor bugs introduced with rewrite
Diffstat (limited to 'misc/MinimalSimpleFormatter.java')
-rw-r--r-- | misc/MinimalSimpleFormatter.java | 3 |
1 files changed, 1 insertions, 2 deletions
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"; } } |