Skip to content

Commit

Permalink
CLOG-226 getPost: Unable to find post with id (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
jesusmmp authored Aug 17, 2023
1 parent e0394c4 commit 3461071
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public ActionReturn handleStore(Map<String, Object> params) {
isBeingPublished = true;
}
} catch (Exception e) {
log.info("Failed to get post with id '{}'. This could happen if this is the first time a post has been saved or published.", post.getId(), e);
log.info("Failed to get post with id '{}'. This could happen if this is the first time a post has been saved or published. Message '{}'", post.getId(), e.getMessage());
}
}

Expand Down

0 comments on commit 3461071

Please sign in to comment.