cleaner language on ConfigLoad()

This commit is contained in:
Jeff Carr 2024-11-28 23:16:43 -06:00
parent 488550a081
commit edd6b1d432
1 changed files with 3 additions and 3 deletions

View File

@ -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
}