mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 14:21:47 +00:00
18 lines
322 B
Java
18 lines
322 B
Java
import lombok.extern.log4j.Log4j;
|
|
|
|
@lombok.extern.log4j.Log4j
|
|
class LoggerLog4j {
|
|
}
|
|
|
|
@Log4j
|
|
class LoggerLog4jWithImport {
|
|
}
|
|
|
|
@Log4j(topic="DifferentName")
|
|
class LoggerLog4jWithDifferentName {
|
|
}
|
|
|
|
@Log4j(topic=LoggerLog4jWithStaticField.TOPIC)
|
|
class LoggerLog4jWithStaticField {
|
|
static final String TOPIC = "StaticField";
|
|
} |