Add Verboseff

This commit is contained in:
Alexander Weiss 2020-10-08 23:01:24 +02:00 committed by Alexander Neumann
parent ce7d613749
commit 3b591ed987
1 changed files with 7 additions and 0 deletions

View File

@ -231,6 +231,13 @@ func Verbosef(format string, args ...interface{}) {
}
}
// Verboseff calls Printf to write the message when the verbosity is >= 2
func Verboseff(format string, args ...interface{}) {
if globalOptions.verbosity >= 2 {
Printf(format, args...)
}
}
// PrintProgress wraps fmt.Printf to handle the difference in writing progress
// information to terminals and non-terminal stdout
func PrintProgress(format string, args ...interface{}) {