Skip to content

Commit

Permalink
Merge e124c55 into a9b0899
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobweinstock authored Nov 3, 2023
2 parents a9b0899 + e124c55 commit 96dd4fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/tink-worker/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ const (

// NewRootCommand creates a new Tink Worker Cobra root command.
func NewRootCommand(version string) *cobra.Command {
zlog, err := zap.NewProduction()
config := zap.NewProductionConfig()
config.OutputPaths = []string{"stdout"}
zlog, err := config.Build()
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 96dd4fd

Please sign in to comment.