Merge "Change error to warning"
authorJorge Hernandez <jh1730@att.com>
Fri, 11 May 2018 03:09:50 +0000 (03:09 +0000)
committerGerrit Code Review <gerrit@onap.org>
Fri, 11 May 2018 03:09:50 +0000 (03:09 +0000)
PolicyEngineUtils/src/main/java/org/onap/policy/utils/CryptoUtils.java
packages/install/src/files/base.conf

index 5496f0d..74f6641 100644 (file)
@@ -145,10 +145,10 @@ public class CryptoUtils {
                        return decryptTxt(encryptedTxt);
                } catch (Exception e) {
                        try {
-                               LOGGER.error("decryptTxtNoEx: Exception while decryption : " + e);
+                               LOGGER.warn("decryptTxtNoEx: Exception while decryption : " + e);
                                return (encryptedTxt != null) ? encryptedTxt.getBytes(StandardCharsets.UTF_8) : new byte[0];
                        } catch (Exception e1) {
-                               LOGGER.error("decryptTxtNoEx: Exception on sending default : " + e1);
+                               LOGGER.warn("decryptTxtNoEx: Exception on sending default : " + e1);
                                return new byte[0];
                        }
                }
index 5f0ff7d..25a2a35 100644 (file)
@@ -20,6 +20,7 @@
 
 JAVA_HOME=/usr/lib/jvm/java-8-oracle
 POLICY_HOME=/opt/app/policy
+POLICY_LOGS=/opt/app/policy/logs
 KEYSTORE_PASSWD=PolicyR0ck$
 
 JDBC_DRIVER=org.mariadb.jdbc.Driver