From 794b55e366339338dce987c32b17727a87b79b25 Mon Sep 17 00:00:00 2001 From: Dave Date: Tue, 23 Dec 2014 22:10:18 +0200 Subject: [PATCH] Util logging changes --- src/nodash/core/NoUtil.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nodash/core/NoUtil.java b/src/nodash/core/NoUtil.java index 996d3cf..44ec868 100644 --- a/src/nodash/core/NoUtil.java +++ b/src/nodash/core/NoUtil.java @@ -134,6 +134,7 @@ public final class NoUtil { try { cipher.init(Cipher.ENCRYPT_MODE, secretKey); } catch (InvalidKeyException e) { + e.printStackTrace(); throw new NoDashFatalException("Secret key is invalid."); } @@ -163,6 +164,7 @@ public final class NoUtil { try { cipher.init(Cipher.DECRYPT_MODE, secretKey); } catch (InvalidKeyException e) { + e.printStackTrace(); throw new NoDashFatalException("Secret key is invalid."); }