Disable log output from automaxprocs library

This commit is contained in:
Michael Eischer 2023-10-22 16:59:45 +02:00
parent 46cb1df1bc
commit ceff4af1ac
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",