Skip to content

Commit

Permalink
Merge a4b338a into 9fa0c2e
Browse files Browse the repository at this point in the history
  • Loading branch information
JingMa87 committed Jun 18, 2020
2 parents 9fa0c2e + a4b338a commit 80b996c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public enum RunResultType { SUCCESS, FAILURE, INPROGRESS };

private static String RESULT_LABEL_SUCCESS = "SUCCESS";
private static String RESULT_LABEL_FAILURE = "FAILED";
private static String RESULT_LABEL_INPROGRESS = "INPROGRESS";
private static String RESULT_LABEL_INPROGRESS = "IN PROGRESS";
private static String RESULT_DELETE_IN_PROGRESS = "DELETE IN PROGRESS";

@ManyToOne
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,12 +412,12 @@ public void logGetRecord(Logger hdLogger, OaiHandler oaiHandler, String identifi
public void logGetRecordException(Logger hdLogger, OaiHandler oaiHandler, String identifier, Throwable e) {
String errMessage = "Exception processing getRecord(), oaiUrl="
+oaiHandler.getBaseOaiUrl()
+",identifier="
+", identifier="
+identifier
+" "
+", "
+e.getClass().getName()
//+" (exception message suppressed)";
+" "
+", "
+e.getMessage();

hdLogger.log(Level.SEVERE, errMessage);
Expand Down

0 comments on commit 80b996c

Please sign in to comment.