diff options
author | bd-912 <bdunahu@colostate.edu> | 2024-05-01 15:30:42 -0600 |
---|---|---|
committer | bd-912 <bdunahu@colostate.edu> | 2024-05-01 15:30:42 -0600 |
commit | e8be6dd157bed1b09312aa360ec8ee2f41813d0f (patch) | |
tree | c3bb3f3703615965ac74d6765ba80e73a129458d /misc/MinimalSimpleFormatter.java | |
parent | ae4c925285a2f5d4d5c584168baafbabd0fe7971 (diff) |
Switch off logging, graphviz
Diffstat (limited to 'misc/MinimalSimpleFormatter.java')
-rw-r--r-- | misc/MinimalSimpleFormatter.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/misc/MinimalSimpleFormatter.java b/misc/MinimalSimpleFormatter.java index 3a42398..741863d 100644 --- a/misc/MinimalSimpleFormatter.java +++ b/misc/MinimalSimpleFormatter.java @@ -7,6 +7,9 @@ import java.util.logging.SimpleFormatter; public class MinimalSimpleFormatter extends SimpleFormatter { @Override public String format(LogRecord record) { - return record.getLevel() + ": " + formatMessage(record) + "\n"; + if (false) + return record.getLevel() + ": " + formatMessage(record) + "\n"; + else + return ""; } } |