diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 20:03:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 20:03:38 -0500 |
| commit | 98407ed8b773ae95c8e7ff229da5f653090e47e1 (patch) | |
| tree | da9cbf1886ba32c2007c291c1c106d275f7adcea /init.go | |
| parent | 8b41d89ab29365a2b0a7f14e50c8d5dedad32f94 (diff) | |
better config output
Diffstat (limited to 'init.go')
| -rw-r--r-- | init.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -30,7 +30,7 @@ func Init() *Forge { os.Exit(-1) } f := initFromConfig(cfg) - log.Info("forge.Init() ok len(repos) =", f.Repos.Len()) + log.Printf("forge.Init() %s len()=%d\n", f.Config.Filename, f.Repos.Len()) return f } @@ -43,7 +43,7 @@ func InitByAppname(argname string) *Forge { os.Exit(-1) } f := initFromConfig(cfg) - log.Info("forge.Init() ok len(repos) =", f.Repos.Len()) + log.Printf("forge.Init() %s len()=%d\n", f.Config.Filename, f.Repos.Len()) return f } |
