Skip to content

Commit

Permalink
change extra error log to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
jbiers committed Feb 1, 2025
1 parent 594b408 commit 18f814a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ func (h *handler) OnRemove(_ string, projectHelmChart *v1alpha2.ProjectHelmChart
// get information about the projectHelmChart
projectID, err := h.getProjectID(projectHelmChart)
if err != nil {
logrus.Errorf("Error getting projectID for projectHelmChart %s/%s: %v", projectHelmChart.Name, projectHelmChart.Namespace, err)
logrus.Warnf("Error getting projectID for projectHelmChart %s/%s: %v", projectHelmChart.Name, projectHelmChart.Namespace, err)
return projectHelmChart, err
}

Expand Down

0 comments on commit 18f814a

Please sign in to comment.