@@ -80,7 +80,7 @@ func (a *Analyzer) AnalyzeOrg(ctx context.Context, org string, numberOfGoroutine
8080 log .Debug ().Err (err ).Msgf ("Failed to get provider version for %s" , provider )
8181 }
8282
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 () )
8484
8585 log .Debug ().Msgf ("Fetching list of repositories for organization: %s on %s" , org , provider )
8686 orgReposBatches := a .ScmClient .GetOrgRepos (ctx , org )
@@ -177,7 +177,7 @@ func (a *Analyzer) AnalyzeRepo(ctx context.Context, repoString string, ref strin
177177 log .Debug ().Err (err ).Msgf ("Failed to get provider version for %s" , provider )
178178 }
179179
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 () )
181181
182182 pkgsupplyClient := pkgsupply .NewStaticClient ()
183183 inventory := scanner .NewInventory (a .Opa , pkgsupplyClient , provider , providerVersion )
@@ -225,7 +225,7 @@ func (a *Analyzer) AnalyzeLocalRepo(ctx context.Context, repoPath string) error
225225 log .Debug ().Err (err ).Msgf ("Failed to get provider version for %s" , provider )
226226 }
227227
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 () )
229229
230230 pkgsupplyClient := pkgsupply .NewStaticClient ()
231231 inventory := scanner .NewInventory (a .Opa , pkgsupplyClient , provider , providerVersion )
0 commit comments