Custom log declaration

This commit is contained in:
Adam Juraszek
2019-05-14 11:57:21 +02:00
parent 399c516bd3
commit bb66465751
24 changed files with 647 additions and 201 deletions
@@ -0,0 +1,10 @@
//CONF: lombok.log.custom.declaration = MyLoggerFactory.create(NAME,TOPIC,NULL,TYPE,TOPIC)
@lombok.CustomLog(topic="t")
class LoggerCustomLog {
}
class MyLoggerFactory {
static MyLoggerFactory create(String name, String t1, Object o, Class<?> clazz, String t2) {
return null;
}
}