Skip to content

Commit

Permalink
Merge pull request #169 from ekristen/fix-logging-output
Browse files Browse the repository at this point in the history
fix: return output to stdout vs stderr
  • Loading branch information
ekristen authored Jan 3, 2025
2 parents 82d7118 + 64685f6 commit aa089bd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/commands/run/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package run
import (
"context"
"fmt"
"os"
"slices"
"strings"
"time"
Expand Down Expand Up @@ -37,6 +38,7 @@ func execute(c *cli.Context) error {
}

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

logger.Trace("preparing to run nuke")

Expand Down

0 comments on commit aa089bd

Please sign in to comment.