aboutsummaryrefslogtreecommitdiff
path: root/test/transform/resource/before/LoggerCustomWithTopicAndName.java
blob: 5b8032177da50dc6cd207eb751de1773b0b1a90e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//CONF: lombok.log.custom.declaration = MyLoggerFactory.create(NAME,TOPIC,NULL,TYPE,TOPIC)
@lombok.CustomLog(topic="t")
class LoggerCustomLog {
}

@lombok.CustomLog(topic=LoggerCustomLogWithStaticField.TOPIC)
class LoggerCustomLogWithStaticField {
	static final String TOPIC = "StaticField";
}

class MyLoggerFactory {
	static MyLoggerFactory create(String name, String t1, Object o, Class<?> clazz, String t2) {
		return null;
	}
}