diff options
author | Maarten Mulders <m.th.mulders@xs4all.nl> | 2014-02-08 15:38:54 +0100 |
---|---|---|
committer | Maarten Mulders <m.th.mulders@xs4all.nl> | 2014-02-08 15:38:54 +0100 |
commit | ebc9ee5f6d6bc89af65d27f472d13f18b34bef18 (patch) | |
tree | 9be2954d407f02768a65e2eda6a3e11616aeb509 /src/core/lombok/extern | |
parent | e1153c16562dba545f4cc2ecbc26befde6c1a781 (diff) | |
download | lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.tar.gz lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.tar.bz2 lombok-ebc9ee5f6d6bc89af65d27f472d13f18b34bef18.zip |
Handler and testcases for @Log4j
Diffstat (limited to 'src/core/lombok/extern')
-rw-r--r-- | src/core/lombok/extern/log4j/Log4j.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/lombok/extern/log4j/Log4j.java b/src/core/lombok/extern/log4j/Log4j.java index 29e1b27c..0fe74599 100644 --- a/src/core/lombok/extern/log4j/Log4j.java +++ b/src/core/lombok/extern/log4j/Log4j.java @@ -59,4 +59,8 @@ import java.lang.annotation.Target; @Retention(RetentionPolicy.SOURCE) @Target(ElementType.TYPE) public @interface Log4j { + /** + * Sets the category of the constructed Logger. By default, it will use the type where the annotation is placed. + */ + String value() default ""; }
\ No newline at end of file |