Skip to content

Commit

Permalink
chore(inspect.go): fix debugf style error
Browse files Browse the repository at this point in the history
  • Loading branch information
eFAILution committed May 10, 2024
1 parent 53e2eea commit 940a2ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pkg/bundle/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
func (b *Bundle) extractImagesFromPackages() {
for i, pkg := range b.bundle.Packages {
if pkg.Repository != "" && pkg.Ref != "" {
message.Debugf("Package:", pkg.Name, "Repository:", pkg.Repository, "Ref:", pkg.Ref)
message.Debugf("Package: %s, Repository: %s, Ref: %s", pkg.Name, pkg.Repository, pkg.Ref)
type Component struct {
Images []string `yaml:"images"`
}
Expand Down

0 comments on commit 940a2ee

Please sign in to comment.