aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/after-ecj/LoggerLog4j2.java
blob: c2fcd428fbd4c464550ee04a960ed8a5a1598fbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import lombok.extern.log4j.Log4j2;
@lombok.extern.log4j.Log4j2 class LoggerLog4j2 {
  private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger(LoggerLog4j2.class);
  <clinit>() {
  }
  LoggerLog4j2() {
    super();
  }
}
@Log4j2 class LoggerLog4j2WithImport {
  private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger(LoggerLog4j2WithImport.class);
  <clinit>() {
  }
  LoggerLog4j2WithImport() {
    super();
  }
}
@Log4j2(topic = "DifferentName") class LoggerLog4j2WithDifferentName {
  private static final org.apache.logging.log4j.Logger log = org.apache.logging.log4j.LogManager.getLogger("DifferentName");
  <clinit>() {
  }
  LoggerLog4j2WithDifferentName() {
    super();
  }
}