prevent log output during init

The extra output shouldn't be seen by the user, and is causing TFE to
fail.
This commit is contained in:
James Bardin 2017-06-12 15:04:40 -04:00
parent be900e8085
commit c0b1761096
1 changed files with 6 additions and 2 deletions

View File

@ -5,7 +5,6 @@ package main
import (
"bytes"
"errors"
"log"
"os"
"os/exec"
"path/filepath"
@ -33,7 +32,12 @@ func configDir() (string, error) {
func homeDir() (string, error) {
// First prefer the HOME environmental variable
if home := os.Getenv("HOME"); home != "" {
log.Printf("[DEBUG] Detected home directory from env var: %s", home)
// FIXME: homeDir gets called from globalPluginDirs during init, before
// the logging is setup. We should move meta initializtion outside of
// init, but in the meantime we just need to silence this output.
//log.Printf("[DEBUG] Detected home directory from env var: %s", home)
return home, nil
}