Skip to content

Commit

Permalink
Change the logging level from info to debug
Browse files Browse the repository at this point in the history
Signed-off-by: cmoulliard <[email protected]>
  • Loading branch information
cmoulliard committed Dec 11, 2024
1 parent f76db50 commit 86b26a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/controllers/localbuild/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (r *LocalbuildReconciler) Reconcile(ctx context.Context, req ctrl.Request)
}

if r.Config.DevMode {
logger.Info("DevMode is enabled")
logger.V(1).Info("DevMode is enabled")

// Check if the Argocd Initial admin secret exists
argocdInitialAdminPassword, err := r.extractArgocdInitialAdminSecret(ctx)
Expand All @@ -114,7 +114,7 @@ func (r *LocalbuildReconciler) Reconcile(ctx context.Context, req ctrl.Request)
return ctrl.Result{RequeueAfter: defaultRequeueTime}, nil
}

logger.Info("Initial argocd admin secret found ...")
logger.V(1).Info("Initial argocd admin secret found ...")

// Secret containing the initial argocd password exists
// Lets try to update the password
Expand Down

0 comments on commit 86b26a2

Please sign in to comment.