Skip to content

Commit

Permalink
Capitalize logs lines (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
NetanelBollag committed May 3, 2023
1 parent d0fbc6d commit 6825bd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func (r *IstioPolicyReconciler) Reconcile(ctx context.Context, req ctrl.Request)
}

if !isIstioInstalled {
logrus.Warning("authorization policies CRD is not installed, Istio policy creation skipped")
logrus.Warning("Authorization policies CRD is not installed, Istio policy creation skipped")
return ctrl.Result{}, nil
}

Expand Down
2 changes: 1 addition & 1 deletion src/watcher/reconcilers/pods.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func (p *PodWatcher) handleIstioPolicy(ctx context.Context, pod v1.Pod, serviceI
}

if !isIstioInstalled {
logrus.Warning("authorization policies CRD is not installed, Istio policy creation skipped")
logrus.Warning("Authorization policies CRD is not installed, Istio policy creation skipped")
return nil
}

Expand Down

0 comments on commit 6825bd5

Please sign in to comment.