Skip to content

Commit

Permalink
HACK: Debug output for Terraform
Browse files Browse the repository at this point in the history
  • Loading branch information
wking committed Dec 1, 2018
1 parent 6dec793 commit 66ac665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/terraform/executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (ex *executor) execute(clusterDir string, args ...string) error {

logrus.Debugf("Running %#v...", cmd)

if logrus.GetLevel() == logrus.DebugLevel {
if true || logrus.GetLevel() == logrus.DebugLevel {
cmd.Stdin = os.Stdin
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
Expand Down

0 comments on commit 66ac665

Please sign in to comment.