aboutsummaryrefslogtreecommitdiff
path: root/exec.go
diff options
context:
space:
mode:
authorFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-06-08 10:27:47 +0900
committerFumitoshi Ukai <fumitoshi.ukai@gmail.com>2015-06-08 10:27:47 +0900
commit8fabdd09a55e26bc340666837cd3be0744c1e1d9 (patch)
treea1bb71fc7d3f39388b44a87158547a55545cb009 /exec.go
parent36c510b51bdb91fc84f0a3634dc63138bcb07028 (diff)
downloadkati-8fabdd09a55e26bc340666837cd3be0744c1e1d9.tar.gz
fix go vet: possible formatting directive in Log call
rename Log to Logf, since it takes format string in the first argument.
Diffstat (limited to 'exec.go')
-rw-r--r--exec.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/exec.go b/exec.go
index d694c81..f927c58 100644
--- a/exec.go
+++ b/exec.go
@@ -129,7 +129,7 @@ func (v AutoSuffixFVar) Eval(w io.Writer, ev *Evaluator) {
func (ex *Executor) makeJobs(n *DepNode, neededBy *Job) error {
output := n.Output
if neededBy != nil {
- Log("MakeJob: %s for %s", output, neededBy.n.Output)
+ Logf("MakeJob: %s for %s", output, neededBy.n.Output)
}
ex.buildCnt++
if ex.buildCnt%100 == 0 {
@@ -147,7 +147,7 @@ func (ex *Executor) makeJobs(n *DepNode, neededBy *Job) error {
neededBy.numDeps--
}
} else {
- Log("%s already done: %d", j.n.Output, j.outputTs)
+ Logf("%s already done: %d", j.n.Output, j.outputTs)
if neededBy != nil {
ex.wm.ReportNewDep(j, neededBy)
}
@@ -177,7 +177,7 @@ func (ex *Executor) makeJobs(n *DepNode, neededBy *Job) error {
}
deps = append(deps, d)
}
- Log("new: %s (%d)", j.n.Output, j.numDeps)
+ Logf("new: %s (%d)", j.n.Output, j.numDeps)
for _, d := range deps {
ex.trace = append(ex.trace, d.Output)
@@ -267,7 +267,7 @@ func (ex *Executor) createRunners(n *DepNode, avoidIO bool) ([]runner, bool) {
ev.avoidIO = avoidIO
ev.filename = n.Filename
ev.lineno = n.Lineno
- Log("Building: %s cmds:%q", n.Output, n.Cmds)
+ Logf("Building: %s cmds:%q", n.Output, n.Cmds)
r := runner{
output: n.Output,
echo: true,