1
0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-09-19 00:12:55 +00:00

Added silent flag

This commit is contained in:
Knut Ahlers 2016-05-30 07:32:46 +02:00
parent 30caf687f0
commit be22033f83
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

10
main.go
View File

@ -23,8 +23,10 @@ var (
RestoreTime string `flag:"time,t" description:"The time from which to restore or list files"`
DryRun bool `flag:"dry-run,n" default:"false" description:"Do a test-run without changes"`
Debug bool `flag:"debug,d" default:"false" description:"Print duplicity commands to output"`
DryRun bool `flag:"dry-run,n" default:"false" description:"Do a test-run without changes"`
Debug bool `flag:"debug,d" default:"false" description:"Print duplicity commands to output"`
Silent bool `flag:"silent,s" default:"false" description:"Do not print to stdout, only write to logfile (for example usefull for crons)"`
VersionAndExit bool `flag:"version" default:"false" description:"Print version and exit"`
}{}
@ -62,7 +64,9 @@ func logf(pattern string, fields ...interface{}) {
t := time.Now().Format("2006-01-02 15:04:05")
pattern = fmt.Sprintf("(%s) ", t) + pattern + "\n"
fmt.Fprintf(logFile, pattern, fields...)
fmt.Printf(pattern, fields...)
if !cfg.Silent {
fmt.Printf(pattern, fields...)
}
}
func main() {