@@ -80,7 +80,7 @@ func (a *Analyzer) AnalyzeOrg(ctx context.Context, org string, numberOfGoroutine
80
80
log .Debug ().Err (err ).Msgf ("Failed to get provider version for %s" , provider )
81
81
}
82
82
83
- log .Debug ().Msgf ("Provider: %s, Version: %s" , provider , providerVersion )
83
+ log .Debug ().Msgf ("Provider: %s, Version: %s, BaseURL: %s " , provider , providerVersion , a . ScmClient . GetProviderBaseURL () )
84
84
85
85
log .Debug ().Msgf ("Fetching list of repositories for organization: %s on %s" , org , provider )
86
86
orgReposBatches := a .ScmClient .GetOrgRepos (ctx , org )
@@ -177,7 +177,7 @@ func (a *Analyzer) AnalyzeRepo(ctx context.Context, repoString string, ref strin
177
177
log .Debug ().Err (err ).Msgf ("Failed to get provider version for %s" , provider )
178
178
}
179
179
180
- log .Debug ().Msgf ("Provider: %s, Version: %s" , provider , providerVersion )
180
+ log .Debug ().Msgf ("Provider: %s, Version: %s, BaseURL: %s " , provider , providerVersion , a . ScmClient . GetProviderBaseURL () )
181
181
182
182
pkgsupplyClient := pkgsupply .NewStaticClient ()
183
183
inventory := scanner .NewInventory (a .Opa , pkgsupplyClient , provider , providerVersion )
@@ -225,7 +225,7 @@ func (a *Analyzer) AnalyzeLocalRepo(ctx context.Context, repoPath string) error
225
225
log .Debug ().Err (err ).Msgf ("Failed to get provider version for %s" , provider )
226
226
}
227
227
228
- log .Debug ().Msgf ("Provider: %s, Version: %s" , provider , providerVersion )
228
+ log .Debug ().Msgf ("Provider: %s, Version: %s, BaseURL: %s " , provider , providerVersion , a . ScmClient . GetProviderBaseURL () )
229
229
230
230
pkgsupplyClient := pkgsupply .NewStaticClient ()
231
231
inventory := scanner .NewInventory (a .Opa , pkgsupplyClient , provider , providerVersion )
0 commit comments