Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
trajan0x committed Jul 18, 2024
1 parent 51594d5 commit c72b63b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/processlog/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ func makeRawArgs(opts []StdStreamLogArgsOption) *stdStreamLogArgs {
args.LogFrequency = time.Second
// not a problem unless it's missing from user too, we'll validate at the end
args.LogDir, _ = os.MkdirTemp("/tmp/logs", "")
_ = os.MkdirAll(args.LogDir, os.ModePerm)
_ = os.MkdirAll("/tmp/logs", os.ModePerm)

args.LogFileName = "log"
args.PrintFunc = func(s []byte) {
Expand Down

0 comments on commit c72b63b

Please sign in to comment.