blob: e209c1d0062b7032694ede92524982ebe446a994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import lombok.extern.apachecommons.CommonsLog;
@lombok.extern.apachecommons.CommonsLog
class LoggerCommons {
}
@CommonsLog
class LoggerCommonsWithImport {
}
@CommonsLog(topic="DifferentName")
class LoggerCommonsWithDifferentName {
}
@CommonsLog(topic=LoggerCommonsWithStaticField.TOPIC)
class LoggerCommonsWithStaticField {
static final String TOPIC = "StaticField";
}
|