From 04345af17a13314765adce5df3531c733a175aea Mon Sep 17 00:00:00 2001 From: Bridget McErlean Date: Thu, 15 Jul 2021 15:29:36 -0400 Subject: [PATCH] Change restic image log messages to info level Signed-off-by: Bridget McErlean --- pkg/restore/restic_restore_action.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/restore/restic_restore_action.go b/pkg/restore/restic_restore_action.go index 7ed02ea88..c20af38c7 100644 --- a/pkg/restore/restic_restore_action.go +++ b/pkg/restore/restic_restore_action.go @@ -208,14 +208,14 @@ func getImage(log logrus.FieldLogger, config *corev1.ConfigMap) string { if len(parts) == 1 { defaultImage := veleroimage.DefaultResticRestoreHelperImage() // Image supplied without registry part - log.Debugf("Plugin config contains image name without registry name. Using default init container image: %q", defaultImage) + log.Infof("Plugin config contains image name without registry name. Using default init container image: %q", defaultImage) return defaultImage } if !(strings.Contains(parts[len(parts)-1], ":")) { tag := veleroimage.ImageTag() // tag-less image name: add default image tag for this version of Velero - log.Debugf("Plugin config contains image name without tag. Adding tag: %q", tag) + log.Infof("Plugin config contains image name without tag. Adding tag: %q", tag) return fmt.Sprintf("%s:%s", image, tag) } else { // tagged image name