Skip to content

Commit a5e60d1

Browse files
committed
chore(operator): still too much logs
1 parent 64e54a6 commit a5e60d1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

operator/controller/src/main/java/io/apicurio/registry/operator/ApicurioRegistry3Reconciler.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public class ApicurioRegistry3Reconciler implements Reconciler<ApicurioRegistry3
115115
public UpdateControl<ApicurioRegistry3> reconcile(ApicurioRegistry3 primary,
116116
Context<ApicurioRegistry3> context) {
117117

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

120120
// Some of the fields in the CR have been deprecated and another fields should be used instead.
121121
// Operator will attempt to update the CR to use the newer fields if possible.

operator/controller/src/main/java/io/apicurio/registry/operator/StatusUpdater.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ private Condition getOrCreateCondition(ApicurioRegistry3Status status, String ty
6767

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

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

0 commit comments

Comments
 (0)