Skip to content

Commit

Permalink
fix(store/github): improve details in empty provider result warning
Browse files Browse the repository at this point in the history
  • Loading branch information
stigok committed Nov 25, 2024
1 parent cc6bcdd commit 320cfc4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/store/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,9 @@ func (s *GitHubStore) ReloadProviderCache(ctx context.Context) error {
}

if len(repos) == 0 {
s.logger.Warn("could not find any repos matching filter")
s.logger.Warn("could not find any provider repos matching filter",
zap.String("topic", s.topicFilter),
zap.String("owner", s.ownerFilter))
}

providerVersionsCache := make(map[string]*core.ProviderVersions)
Expand Down

0 comments on commit 320cfc4

Please sign in to comment.