1
0
Fork 0
mirror of https://github.com/Luzifer/duplicity-backup.git synced 2024-12-20 18:41:21 +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

View file

@ -25,6 +25,8 @@ var (
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,8 +64,10 @@ 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...)
if !cfg.Silent {
fmt.Printf(pattern, fields...)
}
}
func main() {
initCFG()