From 7251c8ca816113e5b59e26a5334c6aba3a9adf20 Mon Sep 17 00:00:00 2001 From: Steve Kriss Date: Fri, 12 Apr 2019 12:52:55 -0600 Subject: [PATCH] restic: change log statement from error to debug Signed-off-by: Steve Kriss --- pkg/restic/repository_ensurer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/restic/repository_ensurer.go b/pkg/restic/repository_ensurer.go index d5b043d91..e953e2112 100644 --- a/pkg/restic/repository_ensurer.go +++ b/pkg/restic/repository_ensurer.go @@ -1,5 +1,5 @@ /* -Copyright 2018 the Velero contributors. +Copyright 2018, 2019 the Velero contributors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -75,7 +75,7 @@ func newRepositoryEnsurer(repoInformer velerov1informers.ResticRepositoryInforme key := repoLabels(newObj.Spec.VolumeNamespace, newObj.Spec.BackupStorageLocation).String() readyChan, ok := r.readyChans[key] if !ok { - log.Errorf("No ready channel found for repository %s/%s", newObj.Namespace, newObj.Name) + log.Debugf("No ready channel found for repository %s/%s", newObj.Namespace, newObj.Name) return }