From f70ee5c8be0dd15f31dbf9300ccfd03101302288 Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Fri, 4 Sep 2015 13:43:40 +0900 Subject: [PATCH] Cleanup --- task.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/task.go b/task.go index 15868a2..a69707d 100644 --- a/task.go +++ b/task.go @@ -82,7 +82,11 @@ func processTask(taskName string, conf *config) error { continue } - if !t.handled { + if t.handled { + if conf.flags&flagVerbose != 0 { + log.Printf("skipping processed task: %s", tn) + } + } else { if conf.flags&flagVerbose != 0 { log.Printf("processing task: %s", tn) }