From 5477b596777a29177cd209f7795304c435730838 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Thu, 10 May 2018 17:38:25 -0400 Subject: 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 --- .../src/main/java/org/onap/policy/utils/CryptoUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'PolicyEngineUtils/src/main') 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]; } } -- cgit 1.2.3-korg