log = new LogInformation();
log.setCreateBy(sessionCredentials.getCurrentUser().getId());
log.setCreateDate(new Timestamp(System.currentTimeMillis()));
getComment().setId(null);
} else {
ProjectComment temp = getComment();
setComment((ProjectComment) manager.getById(ProjectComment.class, getComment().getId()));
log = getComment().getLogInformation();
try {
PropertyUtils.copyProperties(getComment(), temp);
} catch (IllegalAccessException e) {