Fix: wrong log print format (#2453)

(cherry picked from commit 16ecbb8b91)

Co-authored-by: Xiaoxi He <xxhe@alauda.io>
This commit is contained in:
github-actions[bot]
2021-10-12 19:27:53 +08:00
committed by GitHub
co-authored by Xiaoxi He
parent cfbaf38715
commit bdfd8e1f8d
@@ -137,7 +137,7 @@ func (r *Reconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Resu
r.Recorder.Event(app, event.Warning(velatypes.ReasonFailedRevision, err))
return r.endWithNegativeCondition(ctx, app, condition.ErrorCondition("Revision", err), common.ApplicationRendering)
}
klog.Info("Successfully prepare current app revision", "revisionName", handler.currentAppRev.Name,
klog.InfoS("Successfully prepare current app revision", "revisionName", handler.currentAppRev.Name,
"revisionHash", handler.currentRevHash, "isNewRevision", handler.isNewRevision)
app.Status.SetConditions(condition.ReadyCondition("Revision"))
r.Recorder.Event(app, event.Normal(velatypes.ReasonRevisoned, velatypes.MessageRevisioned))
@@ -146,7 +146,7 @@ func (r *Reconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Resu
klog.ErrorS(err, "Failed to update application status", "application", klog.KObj(app))
return r.endWithNegativeCondition(ctx, app, condition.ReconcileError(err), common.ApplicationRendering)
}
klog.Info("Successfully apply application revision", "application", klog.KObj(app))
klog.InfoS("Successfully apply application revision", "application", klog.KObj(app))
policies, err := appFile.PrepareWorkflowAndPolicy()
if err != nil {