Skip to content
Snippets Groups Projects
Commit 9f150ddf authored by OZGCloud's avatar OZGCloud
Browse files

OZG-3961 add logging for reconciling

parent 75d74b92
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ public class KeycloakRealmReconciler implements Reconciler<OzgKeycloakRealm>, Cl
@Override
public UpdateControl<OzgKeycloakRealm> reconcile(OzgKeycloakRealm resource, Context<OzgKeycloakRealm> context) {
log.info("Realm reconciler reconcile, keep after delete is set to: " + resource.getSpec().isKeepAfterDelete());
try {
String realmName = resource.getMetadata().getNamespace();
......
......@@ -50,6 +50,7 @@ public class KeycloakUserReconciler implements Reconciler<OzgKeycloakUser>, Clea
@Override
public UpdateControl<OzgKeycloakUser> reconcile(OzgKeycloakUser resource, Context<OzgKeycloakUser> context) {
log.info("User reconciler reconcile, keep after delete is set to: " + resource.getSpec().isKeepAfterDelete());
var userName = resource.getMetadata().getName();
var namespace = resource.getMetadata().getNamespace();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment