1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
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"; }