cleaner language on ConfigLoad()
This commit is contained in:
parent
488550a081
commit
edd6b1d432
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue