Skip to content

Commit 62dbdb8

Browse files
carlydfclaude
andauthored
Lower reconcile-loop log to debug level (#238)
<!--- Note to EXTERNAL Contributors --> <!-- Thanks for opening a PR! If it is a significant code change, please **make sure there is an open issue** for this. We work best with you when we have accepted the idea first before you code. --> <!--- For ALL Contributors 👇 --> ## What was changed and why "Running Reconcile loop" fires on every 10-second tick for every TWD, making it noise at the default info level. Use V(1) so it only appears when the operator runs with --zap-log-level=debug. ## Checklist <!--- add/delete as needed ---> 1. Closes <!-- add issue number here --> 2. How was this tested: <!--- Please describe how you tested your changes/how we can test them --> 3. Any docs updates needed? <!--- update README if applicable or point out where to update docs.temporal.io --> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 397899a commit 62dbdb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/controller/worker_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func (r *TemporalWorkerDeploymentReconciler) Reconcile(ctx context.Context, req
114114
defer cancel()
115115

116116
l := log.FromContext(ctx)
117-
l.Info("Running Reconcile loop")
117+
l.V(1).Info("Running Reconcile loop")
118118

119119
// Fetch the worker deployment
120120
var workerDeploy temporaliov1alpha1.TemporalWorkerDeployment

0 commit comments

Comments
 (0)