mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 18:23:13 +00:00
18 lines
332 B
Java
18 lines
332 B
Java
import lombok.extern.log4j.Log4j2;
|
|
|
|
@lombok.extern.log4j.Log4j2
|
|
class LoggerLog4j2 {
|
|
}
|
|
|
|
@Log4j2
|
|
class LoggerLog4j2WithImport {
|
|
}
|
|
|
|
@Log4j2(topic="DifferentName")
|
|
class LoggerLog4j2WithDifferentName {
|
|
}
|
|
|
|
@Log4j2(topic=LoggerLog4j2WithStaticField.TOPIC)
|
|
class LoggerLog4j2WithStaticField {
|
|
static final String TOPIC = "StaticField";
|
|
} |