mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 22:23:00 +00:00
18 lines
332 B
Java
18 lines
332 B
Java
import lombok.extern.slf4j.XSlf4j;
|
|
|
|
@lombok.extern.slf4j.XSlf4j
|
|
class LoggerXSlf4j {
|
|
}
|
|
|
|
@XSlf4j
|
|
class LoggerXSlf4jWithImport {
|
|
}
|
|
|
|
@XSlf4j(topic="DifferentName")
|
|
class LoggerXSlf4jWithDifferentName {
|
|
}
|
|
|
|
@XSlf4j(topic=LoggerXSlf4jWithStaticField.TOPIC)
|
|
class LoggerXSlf4jWithStaticField {
|
|
static final String TOPIC = "StaticField";
|
|
} |