I have around 400 of production Java source code files with around hundred to twenty thousand lines of codes each to change out from Log4J String concatenation to SLF4J's parameterized logging.
if(log.isDebugEnabled(){
log.debug("Came here with value: " + car.getName());
}
I would like to take advantage of SLF4J's logging parameterized
log.debug("Came here with value: {}", car.getName());
I was thinking of writing a script to automate this process, or actually is there a way way of doing this?
The main reason why i would like to change to SLF4J's parameterized logging is due to performance.
Will be using SLF4J + Log4J due to LogBack + SLF4J requires JavaSE 5 and above, while i need to work on a J2SE 1.4 JVM environment.