Skip to content
This repository has been archived by the owner on Mar 27, 2021. It is now read-only.

Commit

Permalink
catching error when message entity cant be converted
Browse files Browse the repository at this point in the history
  • Loading branch information
sepehr committed Dec 14, 2019
1 parent b98699a commit 2f455f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public MessageDto convert(MessageEntity messageEntity) {
.timeStamp(messageEntity.getDate().getTime())
.build();
} catch (IOException e) {
log.error(e);
log.catching(e);
return null;
}
}
Expand Down

0 comments on commit 2f455f9

Please sign in to comment.