Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ public static Map<String, Object> verifyAndDecodeJWT(String jwt, PublicKey publi
}
return null;
} catch (Exception ex) {
CodePushUtils.log(ex.getMessage());
CodePushUtils.log(ex.getStackTrace().toString());
CodePushUtils.log(ex);
return null;
}
}
Expand All @@ -218,8 +217,7 @@ public static PublicKey parsePublicKey(String stringPublicKey) {

return kf.generatePublic(X509Key);
} catch (Exception e) {
CodePushUtils.log(e.getMessage());
CodePushUtils.log(e.getStackTrace().toString());
CodePushUtils.log(e);
return null;
}
}
Expand All @@ -237,8 +235,7 @@ public static String getSignature(String folderPath) {
try {
return FileUtils.readFileToString(signatureFilePath);
} catch (IOException e) {
CodePushUtils.log(e.getMessage());
CodePushUtils.log(e.getStackTrace().toString());
CodePushUtils.log(e);
return null;
}
}
Expand Down