mirror of
https://github.com/octoleo/restic.git
synced 2024-11-05 21:07:52 +00:00
Add Verboseff
This commit is contained in:
parent
ce7d613749
commit
3b591ed987
@ -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{}) {
|
||||
|
Loading…
Reference in New Issue
Block a user