[SonarQube ]: Format specifiers should be used instead of string concatenation.
Format specifiers should be used instead of string concatenation.
Solution
String concatenation means LOGGER.info("The program started at " + new Date());
Built in formatting of logger meansLOGGER.info("The program started at {}", new Date());
very ...
hashcodehub.hashnode.dev1 min read