blob: 91cf6d8ddecdc045e414ee438e9f007db00fa210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
@lombok.CustomLog(topic = "t") class LoggerCustomLog {
private static final MyLoggerFactory log = MyLoggerFactory.create(LoggerCustomLog.class.getName(), "t", null, LoggerCustomLog.class, "t");
<clinit>() {
}
LoggerCustomLog() {
super();
}
}
class MyLoggerFactory {
MyLoggerFactory() {
super();
}
static MyLoggerFactory create(String name, String t1, Object o, Class<?> clazz, String t2) {
return null;
}
}
|