Merge "Fix sonar issue AppExitHandler"
authorBogumil Zebek <bogumil.zebek@nokia.com>
Wed, 1 Apr 2020 12:45:32 +0000 (12:45 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 1 Apr 2020 12:45:32 +0000 (12:45 +0000)
certServiceClient/src/main/java/org/onap/aaf/certservice/client/AppExitHandler.java

index caeca37..0bb983e 100644 (file)
@@ -26,8 +26,8 @@ public class AppExitHandler {
     private static final Logger LOGGER = LoggerFactory.getLogger(AppExitHandler.class);
 
     public void exit(ExitStatus exitStatus) {
-        LOGGER.info(String.format("Application exits with following exit code: %s and message: %s",
-                exitStatus.getExitCodeValue(), exitStatus.getMessage()));
+        LOGGER.info("Application exits with following exit code: {} and message: {}",
+                exitStatus.getExitCodeValue(), exitStatus.getMessage());
         System.exit(exitStatus.getExitCodeValue());
     }
 }