summaryrefslogtreecommitdiff
path: root/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config.go')
-rw-r--r--config.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/config.go b/config.go
index 4d9cdb4..e59c873 100644
--- a/config.go
+++ b/config.go
@@ -62,11 +62,7 @@ func (all *Repos) ConfigLoad() error {
func (all *Repos) sampleConfig() {
newr := new(Repo)
newr.FullPath = "/opt/forge/dummyentry"
- if all.Append(newr) {
- log.Info("added", newr.GetGoPath(), "ok")
- } else {
- log.Info("added", newr.GetGoPath(), "failed")
- }
+ all.Append(newr)
}
func loadFile(fullname string) ([]byte, error) {