General sonar fixes: use logger 30/92430/1
authorArindam Mondal <arind.mondal@samsung.com>
Thu, 1 Aug 2019 05:25:18 +0000 (14:25 +0900)
committerarind.mondal <arind.mondal@samsung.com>
Thu, 1 Aug 2019 05:25:41 +0000 (14:25 +0900)
Issue-ID: MUSIC-410
Change-Id: Iac08df4b7534f3293f7ffa3ca1877b5baf044f89
Signed-off-by: arind.mondal <arind.mondal@samsung.com>
src/main/java/org/onap/music/service/impl/MusicCassaCore.java

index 04fcfd2..5c02d34 100644 (file)
@@ -128,7 +128,7 @@ public class MusicCassaCore implements MusicCoreService {
         try {
             lockReference = "" + getLockingServiceHandle().genLockRefandEnQueue(keyspace, table, lockName, locktype);
         } catch (MusicLockingException | MusicServiceException | MusicQueryException e) {
-            e.printStackTrace();
+            logger.error(EELFLoggerDelegate.applicationLogger, e);
             throw new MusicLockingException("Unable to create lock reference. " + e.getMessage());
         } catch (Exception e) {
             logger.error(EELFLoggerDelegate.applicationLogger, e);
@@ -191,7 +191,7 @@ public class MusicCassaCore implements MusicCoreService {
         PreparedQueryObject readQueryObject = new PreparedQueryObject();
         readQueryObject.appendQueryString(query);
         ResultSet results = MusicDataStoreHandle.getDSHandle().executeQuorumConsistencyGet(readQueryObject);
-        if (results.all().size() != 0) {
+        if (!results.all().isEmpty()) {
             logger.info("In acquire lock: Since there was a forcible release, need to sync quorum!");
             try {
                 syncQuorum(keyspace, table, primaryKeyValue);