summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-28 23:16:43 -0600
committerJeff Carr <[email protected]>2024-11-28 23:16:43 -0600
commitedd6b1d432eaa3506be23b31f0686812a6b9093c (patch)
tree1d8a71a268081085a3d5f79dbef655358432358f
parent488550a081769f491f326c7949add6cb9f0cc0b4 (diff)
cleaner language on ConfigLoad()
-rw-r--r--config.go6
1 files 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
}