I intend to use your module for our application. It was fine until I need to set the writer to os.Stdout.
I can see the writer is set on config.go like below
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr, TimeFormat: time.RFC3339})
Would you please show me the way to set it to os.Stdout?
And I would be happy if I can configure the TimeFormat too.
I intend to use your module for our application. It was fine until I need to set the writer to os.Stdout. I can see the writer is set on config.go like below
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr, TimeFormat: time.RFC3339})
Would you please show me the way to set it to os.Stdout? And I would be happy if I can configure the TimeFormat too.Thank you.