Skip to content

Commit

Permalink
fix(command/run): logging output back to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen committed Jan 3, 2025
1 parent 8ba1fbb commit d31fa12
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/commands/nuke/nuke.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package nuke
import (
"context"
"fmt"
"os"
"slices"
"strings"
"time"
Expand Down Expand Up @@ -75,6 +76,7 @@ func execute(c *cli.Context) error { //nolint:funlen,gocyclo
}

logger := logrus.StandardLogger()
logger.SetOutput(os.Stdout)

// Parse the user supplied configuration file to pass in part to configure the nuke process.
parsedConfig, err := config.New(libconfig.Options{
Expand Down

0 comments on commit d31fa12

Please sign in to comment.