I have the below two patterns that i am thinking for logging. I need your help on understanding indeep of this two differences. Here my intention is append and concatination.
log.info("Name: " +name);
log.info("Name: {}", name);
Can anyone please help on understanding this completely. Also, please suggest if any better approach as per current market.
Thanks, Nagendra.