Hi,
i'm using @CustomLog to avoid write code on custom log implemented using SLF4J
I have configured "lombok.config" with that line
lombok.log.custom.declaration=org.slf4j.Logger com.mii.commons.logger.LoggerFactory.getMIILoggerLogic(TYPE)
so i can use
to generate
private final static org.slf4j.Logger = com.mii.commons.logger.LoggerFactory.getMIILoggerLogic(CLASSNAME);
In my custom logger i have 4 different factory method, i'm not understand how to use @CustomLog to choice these different implementation
Example of "lombok.config"
lombok.log.custom.declaration=org.slf4j.Logger com.mii.commons.logger.LoggerFactory.getMIILoggerLogic(TYPE)
lombok.log.custom.declaration=org.slf4j.Logger com.mii.commons.logger.LoggerFactory.getMIILoggerSystem(TYPE)
lombok.log.custom.declaration=org.slf4j.Logger com.mii.commons.logger.LoggerFactory.getMIILoggerCommunication(TYPE)
lombok.log.custom.declaration=org.slf4j.Logger com.mii.commons.logger.LoggerFactory.getMIILoggerConfiguration(TYPE)
and maybe use 4 different @CustomLog syntax
can someone help me?