Art: log.debug("Here's the string: {}; here's the integer: {}", s, i);
Paul: log.info("My {} brown {} jumped over the {} dogs tail", new
Object[]{"quick", "fox", "lazy"});
I see 2 different ways : one with all variables separated and one with all
parameters in an Object , are both valid ?
Regards,
Walter