diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 03:13:09 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 03:13:09 -0600 |
| commit | b0fca659c57dd2cb6a88a74d1a349117a3908124 (patch) | |
| tree | d1e43473858cead9872a4652aaaeed85dd2afd38 /rill.go | |
| parent | ebda2ea222ed9f1d348d5d3e0cffb9c9f9c0acec (diff) | |
fix the dumb names
Diffstat (limited to 'rill.go')
| -rw-r--r-- | rill.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 } |
