Merge pull request #4531 from MichaelEischer/silence-automaxprocs

Disable log output from automaxprocs library
This commit is contained in:
Michael Eischer 2023-10-22 17:43:36 +02:00 committed by GitHub
commit ae83a9002a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -6,3 +6,4 @@ on hosts with many CPU cores.
https://github.com/restic/restic/issues/4128
https://github.com/restic/restic/pull/4485
https://github.com/restic/restic/pull/4531

View File

@ -10,7 +10,7 @@ import (
godebug "runtime/debug"
"github.com/spf13/cobra"
_ "go.uber.org/automaxprocs"
"go.uber.org/automaxprocs/maxprocs"
"github.com/restic/restic/internal/debug"
"github.com/restic/restic/internal/errors"
@ -18,6 +18,11 @@ import (
"github.com/restic/restic/internal/restic"
)
func init() {
// don't import `go.uber.org/automaxprocs` to disable the log output
_, _ = maxprocs.Set()
}
// cmdRoot is the base command when no other command has been specified.
var cmdRoot = &cobra.Command{
Use: "restic",