Merge pull request #20565 from xduugu/fix-compose-debug-msg

compose: fix compose provider debug message
This commit is contained in:
openshift-ci[bot] 2023-11-02 18:23:31 +00:00 committed by GitHub
commit f002e4516d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ func composeProvider() (string, error) {
logrus.Debugf("Found compose provider %q", path)
return path, nil
}
logrus.Debugf("Error looking up compose provider %q: %v", path, err)
logrus.Debugf("Error looking up compose provider %q: %v", candidate, err)
lookupErrors = append(lookupErrors, err)
}