1
0
mirror of https://github.com/go-task/task.git synced 2025-06-25 00:47:04 +02:00

add verbose mode (-v flag)

This commit is contained in:
Andrey Nering
2017-07-05 20:55:50 -03:00
parent a1d1f73fe7
commit 222b5cb587
4 changed files with 24 additions and 7 deletions

View File

@ -45,6 +45,7 @@ func (e *Executor) handleDynamicVariableContent(value string) (string, error) {
}
result = strings.TrimSpace(result)
e.verbosePrintfln(`task: dynamic variable: "%s", result: "%s"`, value, result)
return result, nil
}