Custom log declaration

This commit is contained in:
Adam Juraszek
2019-05-14 18:48:01 +02:00
parent 399c516bd3
commit bb66465751
24 changed files with 647 additions and 201 deletions
@@ -0,0 +1,14 @@
//CONF: lombok.log.custom.declaration = before.MyLogger before.MyLoggerFactory.create(TYPE)
package before;
@lombok.CustomLog
class LoggerCustomLog {
}
class MyLoggerFactory {
static MyLogger create(Class<?> clazz) {
return null;
}
}
class MyLogger {
}