summaryrefslogtreecommitdiff
path: root/rill.go
diff options
context:
space:
mode:
Diffstat (limited to 'rill.go')
-rw-r--r--rill.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/rill.go b/rill.go
index 78c1de0..d6dc2a1 100644
--- a/rill.go
+++ b/rill.go
@@ -38,15 +38,15 @@ func (repo *Repo) GitPull() cmd.Status {
/*
if r.Error == nil {
if r.Exit == 0 {
- log.Log(GITPBWARN, "git pull ran ", repo.GetGoPath())
- // log.Log(GITPBWARN, "git pull output", output)
+ log.Log(WARN, "git pull ran ", repo.GetGoPath())
+ // log.Log(WARN, "git pull output", output)
return r
} else {
- log.Log(GITPBWARN, "git pull error", repo.GetGoPath(), strings.Join(r.Stderr, "\n"))
+ log.Log(WARN, "git pull error", repo.GetGoPath(), strings.Join(r.Stderr, "\n"))
return r
}
}
- log.Log(GITPBWARN, "git pull error", repo.GetGoPath(), r.Error)
+ log.Log(WARN, "git pull error", repo.GetGoPath(), r.Error)
*/
return r
}