Skip to content

Commit

Permalink
remove debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
fffunke committed Feb 10, 2025
1 parent e06f5c1 commit 13d35f2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pkg/source/mysqldump/backend_config_based.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@ import (
"os"
"strings"

"github.com/pkg/errors"
log "github.com/sirupsen/logrus"

"github.com/mittwald/brudi/pkg/cli"
"github.com/pkg/errors"
)

type ConfigBasedBackend struct {
Expand Down Expand Up @@ -44,7 +42,6 @@ func (b *ConfigBasedBackend) CreateBackup(ctx context.Context) error {
Binary: binary,
Args: cli.StructToCLI(b.cfg.Options),
}
log.Warnf("cmd: %+v", cmd)
out, err := cli.Run(ctx, cmd)
if err != nil {
return errors.WithStack(fmt.Errorf("%+v - %s", err, out))
Expand Down

0 comments on commit 13d35f2

Please sign in to comment.