From 60e6fb8fad7698c4a5ee97ee664997d6267e7987 Mon Sep 17 00:00:00 2001 From: Spencer Krum Date: Tue, 30 Sep 2014 22:33:59 -0700 Subject: [PATCH] Improve comments in log.go Provide some hints on what to do with the environment variables listed in log.go --- log.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/log.go b/log.go index d655d8d39..de90ca758 100644 --- a/log.go +++ b/log.go @@ -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) {