aboutsummaryrefslogtreecommitdiff
path: root/src/core/lombok/extern/log4j
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2014-02-10 21:56:35 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2014-02-10 21:56:35 +0100
commitd78135180c8f9e9f4c6c361679759d3eacb63be3 (patch)
tree6450085e10d9dfd9dc901d8cc837727d7372bf09 /src/core/lombok/extern/log4j
parentdb24fd42c5732856a894dbdc5e1827ea31792757 (diff)
downloadlombok-d78135180c8f9e9f4c6c361679759d3eacb63be3.tar.gz
lombok-d78135180c8f9e9f4c6c361679759d3eacb63be3.tar.bz2
lombok-d78135180c8f9e9f4c6c361679759d3eacb63be3.zip
[deps] Updated eclipse deps to 3.9 tree. This also enables testing java7 features on ecj.
[Log] updated naming for @Log (topic= instead of mchmulder's 'value').
Diffstat (limited to 'src/core/lombok/extern/log4j')
-rw-r--r--src/core/lombok/extern/log4j/Log4j.java2
-rw-r--r--src/core/lombok/extern/log4j/Log4j2.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/lombok/extern/log4j/Log4j.java b/src/core/lombok/extern/log4j/Log4j.java
index 0fe74599..d3164047 100644
--- a/src/core/lombok/extern/log4j/Log4j.java
+++ b/src/core/lombok/extern/log4j/Log4j.java
@@ -62,5 +62,5 @@ 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 "";
+ String topic() default "";
} \ No newline at end of file
diff --git a/src/core/lombok/extern/log4j/Log4j2.java b/src/core/lombok/extern/log4j/Log4j2.java
index 96fab793..0267d98c 100644
--- a/src/core/lombok/extern/log4j/Log4j2.java
+++ b/src/core/lombok/extern/log4j/Log4j2.java
@@ -62,5 +62,5 @@ public @interface Log4j2 {
/**
* Sets the category of the constructed Logger. By default, it will use the type where the annotation is placed.
*/
- String value() default "";
+ String topic() default "";
} \ No newline at end of file