Merge pull request #3112 from MichaelEischer/reduce-progress-log-spam

Limit progress bar updates to once per second on non-terminal outputs
This commit is contained in:
Alexander Neumann 2020-11-19 07:54:36 +01:00 committed by GitHub
commit 8a150ee91f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ func newProgressMax(show bool, max uint64, description string) *progress.Counter
}
interval := time.Second / 60
if !stdinIsTerminal() {
if !stdoutIsTerminal() {
interval = time.Second
} else {
fps, err := strconv.ParseInt(os.Getenv("RESTIC_PROGRESS_FPS"), 10, 64)