diff options
| author | Jeff Carr <[email protected]> | 2025-09-26 13:04:50 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-26 13:04:50 -0500 |
| commit | 8ac9235872219ff3c345cbbb072f9fb7b576d512 (patch) | |
| tree | cf7b885052bb7de7b9e4784293546eebe9a91bad /doListRepos.go | |
| parent | b8d9cb50403f22ae2ff8cf34c575f8bc8a1d1936 (diff) | |
debugging slowness
Diffstat (limited to 'doListRepos.go')
| -rw-r--r-- | doListRepos.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doListRepos.go b/doListRepos.go index 67d7227..17f6a64 100644 --- a/doListRepos.go +++ b/doListRepos.go @@ -12,9 +12,7 @@ import ( ) func doListRepos() { - all := me.forge.Repos.SortByFullPath() - for all.Scan() { - check := all.Next() + for check := range me.forge.Repos.IterAll() { repotype := check.GetRepoType() if repotype == "binary" || repotype == "plugin" { @@ -28,6 +26,7 @@ func doListRepos() { // ignore read only stuff continue } + log.Info("doListRepos() START", check.FullPath) // var cmd []string var start string @@ -89,5 +88,6 @@ func doListRepos() { // err := fmt.Sprintf("name is blank error %+v", repo) log.Warn("name is blank error", check.GetGoPath()) } + log.Info("doListRepos() END", check.FullPath) } } |
