切换日志组件

This commit is contained in:
egzosn
2021-05-30 20:51:16 +08:00
parent 0fb2b8dba9
commit d40efb21c5
17 changed files with 73 additions and 70 deletions

View File

@@ -115,7 +115,7 @@ public class UnionPayService extends BasePayService<UnionPayConfigStorage> {
certDescriptor.initRootCert(payConfigStorage.getAcpRootCertInputStream());
}
catch (IOException e) {
LOG.error(e);
LOG.error("", e);
}
@@ -386,10 +386,10 @@ public class UnionPayService extends BasePayService<UnionPayConfigStorage> {
LOG.error("verify certificate chain fail.", e);
}
catch (CertificateExpiredException e) {
LOG.error(e);
LOG.error("", e);
}
catch (GeneralSecurityException e) {
LOG.error(e);
LOG.error("", e);
}
return null;
}