aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples
diff options
context:
space:
mode:
Diffstat (limited to 'website/usageExamples')
-rw-r--r--website/usageExamples/LogExample_post.jpage2
-rw-r--r--website/usageExamples/LogExample_pre.jpage2
2 files changed, 2 insertions, 2 deletions
diff --git a/website/usageExamples/LogExample_post.jpage b/website/usageExamples/LogExample_post.jpage
index eab3b046..78c0fdd9 100644
--- a/website/usageExamples/LogExample_post.jpage
+++ b/website/usageExamples/LogExample_post.jpage
@@ -2,7 +2,7 @@ public class LogExample {
private static final java.util.logging.Logger log = java.util.logging.Logger.getLogger(LogExample.class.getName());
public static void main(String... args) {
- log.error("Something's wrong here");
+ log.severe("Something's wrong here");
}
}
diff --git a/website/usageExamples/LogExample_pre.jpage b/website/usageExamples/LogExample_pre.jpage
index ba27dd27..9fa1e91c 100644
--- a/website/usageExamples/LogExample_pre.jpage
+++ b/website/usageExamples/LogExample_pre.jpage
@@ -5,7 +5,7 @@ import lombok.extern.slf4j.Slf4j;
public class LogExample {
public static void main(String... args) {
- log.error("Something's wrong here");
+ log.severe("Something's wrong here");
}
}