Fix debug logging
The change done in #3964 causes the if statement to check if debug logging should be enabled to always pass.
This commit is contained in:
parent
7323f07f3c
commit
1fbadb4de9
2
log.go
2
log.go
|
@ -13,7 +13,7 @@ const EnvLogFile = "PACKER_LOG_PATH" //Set to a file
|
||||||
// logOutput determines where we should send logs (if anywhere).
|
// logOutput determines where we should send logs (if anywhere).
|
||||||
func logOutput() (logOutput io.Writer, err error) {
|
func logOutput() (logOutput io.Writer, err error) {
|
||||||
logOutput = nil
|
logOutput = nil
|
||||||
if os.Getenv(EnvLog) != "" || os.Getenv(EnvLog) != "0" {
|
if os.Getenv(EnvLog) != "" && os.Getenv(EnvLog) != "0" {
|
||||||
logOutput = os.Stderr
|
logOutput = os.Stderr
|
||||||
|
|
||||||
if logPath := os.Getenv(EnvLogFile); logPath != "" {
|
if logPath := os.Getenv(EnvLogFile); logPath != "" {
|
||||||
|
|
Loading…
Reference in New Issue