Skip to content

Commit

Permalink
Log registrar results
Browse files Browse the repository at this point in the history
  • Loading branch information
peacekeeper committed Nov 24, 2023
1 parent b091807 commit 7e96e4e
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ public CreateState create(String method, CreateRequest createRequest, Map<String
}

createState.getDidRegistrationMetadata().put("method", method);
if (log.isInfoEnabled()) log.info("Finished create " + createState + " with driver " + driver.getClass().getSimpleName());
}

// [after create]
Expand Down Expand Up @@ -161,6 +162,7 @@ public UpdateState update(String method, UpdateRequest updateRequest, Map<String
}

updateState.getDidRegistrationMetadata().put("method", method);
if (log.isInfoEnabled()) log.info("Finished update " + updateState + " with driver " + driver.getClass().getSimpleName());
}

// [after update]
Expand Down Expand Up @@ -225,6 +227,7 @@ public DeactivateState deactivate(String method, DeactivateRequest deactivateReq
}

deactivateState.getDidRegistrationMetadata().put("method", method);
if (log.isInfoEnabled()) log.info("Finished deactivate " + deactivateState + " with driver " + driver.getClass().getSimpleName());
}

// [after deactivate]
Expand Down

0 comments on commit 7e96e4e

Please sign in to comment.