From edd6b1d432eaa3506be23b31f0686812a6b9093c Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 28 Nov 2024 23:16:43 -0600 Subject: cleaner language on ConfigLoad() --- config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.go b/config.go index 4da983d..6c10e74 100644 --- a/config.go +++ b/config.go @@ -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 } -- cgit v1.2.3