summaryrefslogtreecommitdiff
path: root/misc/MinimalSimpleFormatter.java
diff options
context:
space:
mode:
authorbd-912 <bdunahu@colostate.edu>2024-05-03 17:56:39 -0600
committerbd-912 <bdunahu@colostate.edu>2024-05-03 17:56:39 -0600
commit5ddbe1a5877c2117b2d74015af1eb11baaf998a1 (patch)
tree8c593470ce67d0c2cdb14745de512bf52102bc57 /misc/MinimalSimpleFormatter.java
parent8b481ec08efa60d462897a98bec3f6761c2933d1 (diff)
Added example which checks expressions are dereferenced properly
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 a325185..741863d 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 (true)
+ if (false)
return record.getLevel() + ": " + formatMessage(record) + "\n";
else
return "";