From: Jim Hahn Date: Thu, 10 May 2018 21:38:25 +0000 (-0400) Subject: Change error to warning X-Git-Tag: v1.2.1~1^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=policy%2Fengine.git;a=commitdiff_plain;h=5477b596777a29177cd209f7795304c435730838 Change error to warning Changed ERROR about decryption to WARNING. Added POLICY_LOGS to base.conf (for non-docker). Change-Id: If32965f1c37b36102c12371e739e1a155bb255f0 Issue-ID: POLICY-758 Signed-off-by: Jim Hahn --- diff --git a/PolicyEngineUtils/src/main/java/org/onap/policy/utils/CryptoUtils.java b/PolicyEngineUtils/src/main/java/org/onap/policy/utils/CryptoUtils.java index 5496f0d87..74f6641ae 100644 --- a/PolicyEngineUtils/src/main/java/org/onap/policy/utils/CryptoUtils.java +++ b/PolicyEngineUtils/src/main/java/org/onap/policy/utils/CryptoUtils.java @@ -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]; } } diff --git a/packages/install/src/files/base.conf b/packages/install/src/files/base.conf index 5f0ff7d2a..25a2a355d 100644 --- a/packages/install/src/files/base.conf +++ b/packages/install/src/files/base.conf @@ -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