diff --git a/cmd/skopeo/sync.go b/cmd/skopeo/sync.go index 07939c9c..e33350a2 100644 --- a/cmd/skopeo/sync.go +++ b/cmd/skopeo/sync.go @@ -344,8 +344,11 @@ func imagesToCopyFromRegistry(registryName string, cfg registrySyncConfig, sourc tagReg, err := regexp.Compile(tagRegex) if err != nil { - repoLogger.Error("Error processing repo, skipping") + repoLogger.WithFields(logrus.Fields{ + "regex": tagRegex, + }).Error("Error parsing regex, skipping") logrus.Error(err) + continue } repoLogger.Info("Querying registry for image tags")