private static final Logger LOGGER = LoggerFactory.getLogger(Updater.class);
I use SLF4J and Logback
When I try to record statements
LOGGER.info("{}:{}:{}", one, two, three)
it says
cannot find symbol method info(java.lang.String,java.lang.String,java.lang.String,java.lang.String)
Is there no way to write more than two variables in one info statement?
source share