Skip to content

Commit

Permalink
added identity hash to midpoint object checker
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Jan 26, 2022
1 parent 46062a8 commit 65af780
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public Result check(Object object) {

private <O extends ObjectType> Result checkObject(PrismObject<O> object) {

LOGGER.info("Check for serialization of prism object: {}", object);
LOGGER.info("Check for serialization of prism object: {}, identity hash: {}", object, System.identityHashCode(object));
// if (object.canRepresent(ResourceType.class)) {
// return new Result( Result.Status.FAILURE, "Storage of ResourceType objects not allowed: "+object);
// }
Expand Down

0 comments on commit 65af780

Please sign in to comment.