Skip to content

Commit

Permalink
SqaleRepositoryService#recordException: fix of inverted ? : for message
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Aug 17, 2021
1 parent 820c372 commit 9d6586f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1877,7 +1877,7 @@ private SystemException handledGeneralException(

private void recordException(
@NotNull Throwable ex, OperationResult operationResult, boolean fatal) {
String message = Strings.isNullOrEmpty(ex.getMessage()) ? ex.getMessage() : "null";
String message = Strings.isNullOrEmpty(ex.getMessage()) ? "null" : ex.getMessage();
if (Strings.isNullOrEmpty(message)) {
message = ex.getMessage();
}
Expand Down

0 comments on commit 9d6586f

Please sign in to comment.