Skip to content

Commit

Permalink
fix: Panic with odd number of key / value arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
astefanutti committed Aug 30, 2022
1 parent 7482447 commit 95e0123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/trait/trait_catalog.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (c *Catalog) apply(environment *Environment) error {
applicable := false
for _, trait := range traits {
if environment.Platform == nil && trait.RequiresIntegrationPlatform() {
c.L.Debug("Skipping trait because of missing integration platform: %s", trait.ID())
c.L.Debugf("Skipping trait because of missing integration platform: %s", trait.ID())

continue
}
Expand Down

0 comments on commit 95e0123

Please sign in to comment.