Skip to content

Commit

Permalink
chore(operator): still too much logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jsenko committed Feb 13, 2025
1 parent 64e54a6 commit a5e60d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public class ApicurioRegistry3Reconciler implements Reconciler<ApicurioRegistry3
public UpdateControl<ApicurioRegistry3> reconcile(ApicurioRegistry3 primary,
Context<ApicurioRegistry3> context) {

log.debug("Reconciling Apicurio Registry: {}", primary);
log.trace("Reconciling Apicurio Registry: {}", primary);

// Some of the fields in the CR have been deprecated and another fields should be used instead.
// Operator will attempt to update the CR to use the newer fields if possible.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private Condition getOrCreateCondition(ApicurioRegistry3Status status, String ty

public void update(Deployment deployment) {
requireNonNull(deployment);
log.debug("Setting status based on Deployment:\n{}", toYAML(deployment.getStatus()));
log.trace("Setting status based on Deployment:\n{}", toYAML(deployment.getStatus()));

// Remove error condition if present
registry.withStatus().getConditions().removeIf(c -> ERROR_TYPE.equals(c.getType()));
Expand Down

0 comments on commit a5e60d1

Please sign in to comment.