Merge pull request #3970 from svanharmelen/b-logging

Fix debug logging
This commit is contained in:
Matthew Hooker 2016-10-07 12:17:42 -07:00 committed by GitHub
commit 0b0411bebd
1 changed files with 1 additions and 1 deletions

2
log.go
View File

@ -13,7 +13,7 @@ const EnvLogFile = "PACKER_LOG_PATH" //Set to a file
// logOutput determines where we should send logs (if anywhere).
func logOutput() (logOutput io.Writer, err error) {
logOutput = nil
if os.Getenv(EnvLog) != "" || os.Getenv(EnvLog) != "0" {
if os.Getenv(EnvLog) != "" && os.Getenv(EnvLog) != "0" {
logOutput = os.Stderr
if logPath := os.Getenv(EnvLogFile); logPath != "" {