From d4c6de9377740ac063e62469204d221221d6fa1f Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 22 Sep 2017 18:50:13 +0700 Subject: [PATCH] actually use the log file set as a flag in the integration tests --- integrationtests/tools/testlog/testlog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrationtests/tools/testlog/testlog.go b/integrationtests/tools/testlog/testlog.go index 7db09a44..78353162 100644 --- a/integrationtests/tools/testlog/testlog.go +++ b/integrationtests/tools/testlog/testlog.go @@ -27,7 +27,7 @@ var _ = BeforeEach(func() { if len(logFileName) > 0 { var err error - logFile, err = os.Create("./log.txt") + logFile, err = os.Create(logFileName) Expect(err).ToNot(HaveOccurred()) log.SetOutput(logFile) utils.SetLogLevel(utils.LogLevelDebug)