Skip to content

Commit

Permalink
fix exception log in jira service (#418)
Browse files Browse the repository at this point in the history
fix exception log in jira service
  • Loading branch information
AvivCx authored Sep 13, 2020
1 parent e31c8b5 commit 1cdcaf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/checkmarx/flow/service/JiraService.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void init() {
this.metaClient = this.client.getMetadataClient();
configJira();
} catch (URISyntaxException | RestClientException e) {
log.error("Error constructing URI for JIRA", e);
log.error("Error constructing URI for JIRA: {}", e.getMessage());
}
}
}
Expand Down

0 comments on commit 1cdcaf7

Please sign in to comment.