aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/LoggerLog4j2.java
blob: c9cf941293d24fbeaf63ec7ac49aa6b168085775 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import lombok.extern.log4j.Log4j2;

@lombok.extern.log4j.Log4j2
class LoggerLog4j2 {
}

@Log4j2
class LoggerLog4j2WithImport {
}

@Log4j2(topic="DifferentName")
class LoggerLog4j2WithDifferentName {
}