Skip to content

Commit

Permalink
Merge pull request #2057 from giuseppe/no-reopen-stderr
Browse files Browse the repository at this point in the history
main: not reopen /dev/stderr
  • Loading branch information
Mrunal Patel committed May 15, 2019
2 parents eb4aeed + 8383c72 commit b9b6cc6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions main.go
Expand Up @@ -87,7 +87,7 @@ func main() {
},
cli.StringFlag{
Name: "log",
Value: "/dev/stderr",
Value: "",
Usage: "set the log file path where internal debug information is written",
},
cli.StringFlag{
Expand Down Expand Up @@ -157,9 +157,15 @@ func (f *FatalWriter) Write(p []byte) (n int, err error) {
}

func createLogConfig(context *cli.Context) logs.Config {
logFilePath := context.GlobalString("log")
logPipeFd := ""
if logFilePath == "" {
logPipeFd = "2"
}
config := logs.Config{
LogPipeFd: logPipeFd,
LogLevel: logrus.InfoLevel,
LogFilePath: context.GlobalString("log"),
LogFilePath: logFilePath,
LogFormat: context.GlobalString("log-format"),
}
if context.GlobalBool("debug") {
Expand Down

0 comments on commit b9b6cc6

Please sign in to comment.