aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples/LogExample_post.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'website/usageExamples/LogExample_post.jpage')
-rw-r--r--website/usageExamples/LogExample_post.jpage2
1 files changed, 1 insertions, 1 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");
}
}