diff options
| author | Jeff Carr <[email protected]> | 2024-11-28 23:16:43 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-28 23:16:43 -0600 |
| commit | edd6b1d432eaa3506be23b31f0686812a6b9093c (patch) | |
| tree | 1d8a71a268081085a3d5f79dbef655358432358f | |
| parent | 488550a081769f491f326c7949add6cb9f0cc0b4 (diff) | |
cleaner language on ConfigLoad()
| -rw-r--r-- | config.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -66,7 +66,7 @@ func (c *ForgeConfigs) ConfigLoad() error { log.Warn("broken forge.pb config file") return err } - log.Info("config load found", len(c.ForgeConfigs), "repos") + log.Info("found", len(c.ForgeConfigs), "entries in ~/.config/forge") return nil } @@ -86,7 +86,7 @@ func (c *ForgeConfigs) ConfigLoad() error { log.Warn("broken forge.text config file") return err } - log.Info("config load found", len(c.ForgeConfigs), "repos") + log.Info("found", len(c.ForgeConfigs), "entries in ~/.config/forge") return nil } @@ -106,7 +106,7 @@ func (c *ForgeConfigs) ConfigLoad() error { log.Warn("broken forge.json config file") return err } - log.Info("config load found", len(c.ForgeConfigs), "repos") + log.Info("found", len(c.ForgeConfigs), "entries in ~/.config/forge") return nil } |
