Improve comments in log.go

Provide some hints on what to do with the environment
variables listed in log.go
This commit is contained in:
Spencer Krum 2014-09-30 22:33:59 -07:00
parent 3ae6f6ba76
commit 60e6fb8fad
1 changed files with 2 additions and 2 deletions

4
log.go
View File

@ -7,8 +7,8 @@ import (
// These are the environmental variables that determine if we log, and if
// we log whether or not the log should go to a file.
const EnvLog = "TF_LOG"
const EnvLogFile = "TF_LOG_PATH"
const EnvLog = "TF_LOG" //Set to True
const EnvLogFile = "TF_LOG_PATH" //Set to a file
// logOutput determines where we should send logs (if anywhere).
func logOutput() (logOutput io.Writer, err error) {