aboutsummaryrefslogtreecommitdiff
path: root/usage_examples/LogExample_pre.jpage
diff options
context:
space:
mode:
Diffstat (limited to 'usage_examples/LogExample_pre.jpage')
-rw-r--r--usage_examples/LogExample_pre.jpage8
1 files changed, 8 insertions, 0 deletions
diff --git a/usage_examples/LogExample_pre.jpage b/usage_examples/LogExample_pre.jpage
index 196a9047..fa746dba 100644
--- a/usage_examples/LogExample_pre.jpage
+++ b/usage_examples/LogExample_pre.jpage
@@ -16,3 +16,11 @@ public class LogExampleOther {
log.error("Something else is wrong here");
}
}
+
+@CommonsLog("CounterLog")
+public class LogExampleCategory {
+
+ public static void main(String... args) {
+ log.error("Calling the 'CounterLog' with a message");
+ }
+}