Skip to content

Commit

Permalink
Use warn level when secrets tracker does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaynard committed Jul 13, 2020
1 parent cf55356 commit c7f7679
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/secret.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func NewSecretCommand(f *core.Factory, k *core.KubeData) *cobra.Command {
secretTracker, secretTrackerErr := k.GetConfigMap(watch.WatchSecretTrackerName, watch.WatchNamespace)

if secretTrackerErr != nil {
f.Logger.Error(secretTrackerErr)
f.Logger.Warn(secretTrackerErr)
}

for _, pod := range pods.Items {
Expand Down

0 comments on commit c7f7679

Please sign in to comment.