From bd9061f1b13a02f198cda816d36b7014ddd7f8ac Mon Sep 17 00:00:00 2001
From: chenjiahe <763432473@qq.com>
Date: 星期四, 21 十月 2021 10:36:42 +0800
Subject: [PATCH] 屏蔽打印日志

---
 src/main/java/com/hx/util/rsa/RSAUtil.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/hx/util/rsa/RSAUtil.java b/src/main/java/com/hx/util/rsa/RSAUtil.java
index 45349a3..20bb3f0 100644
--- a/src/main/java/com/hx/util/rsa/RSAUtil.java
+++ b/src/main/java/com/hx/util/rsa/RSAUtil.java
@@ -64,7 +64,7 @@
             byte[] bytes = cipher.doFinal(content.getBytes());
             return byte2Base64(bytes);
         } catch (Exception e) {
-            logger.error("鍏挜鍔犲瘑澶辫触{}", e);
+            //logger.error("鍏挜鍔犲瘑澶辫触{}", e);
         }
         return null;
     }
@@ -77,7 +77,7 @@
             byte[] bytes = cipher.doFinal(base642Byte(content));
             return new String(bytes);
         } catch (Exception e) {
-            logger.error("绉侀挜瑙e瘑澶辫触{}", e);
+            //logger.error("绉侀挜瑙e瘑澶辫触{}", e);
         }
         return null;
     }

--
Gitblit v1.8.0