From 7aa4fef10f50f0d78bf4ff5fd3ae607ecc1a6b99 Mon Sep 17 00:00:00 2001 From: Nikola Kovacs Date: Tue, 13 Jun 2017 16:06:37 +0200 Subject: [PATCH] Has been run -> started This makes it clearer that the process did not finish running, and matches "Ended". --- watcher/watcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/watcher/watcher.go b/watcher/watcher.go index b7e16ba..007e86a 100644 --- a/watcher/watcher.go +++ b/watcher/watcher.go @@ -250,8 +250,8 @@ func (p *Project) run(channel chan bool, wr *sync.WaitGroup) { for { select { case <-runner: - msg = fmt.Sprintln(p.pname(p.Name, 5), ":", style.Green.Regular("Has been run")+" after", style.Magenta.Regular(big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3), " s")) - out = BufferOut{Time: time.Now(), Text: "Has been run after " + big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3) + " s"} + msg = fmt.Sprintln(p.pname(p.Name, 5), ":", style.Green.Regular("Started")+" after", style.Magenta.Regular(big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3), " s")) + out = BufferOut{Time: time.Now(), Text: "Started after " + big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3) + " s"} p.print("log", out, msg, "") return }