cleanup logging statements

This commit is contained in:
Casey Lee
2019-01-16 10:10:24 -08:00
parent 454b219a40
commit ce5fbcf2e2
2 changed files with 5 additions and 7 deletions

View File

@@ -10,7 +10,6 @@ import (
"github.com/docker/docker/api/types/container"
"github.com/docker/docker/client"
"github.com/nektos/act/common"
log "github.com/sirupsen/logrus"
"golang.org/x/crypto/ssh/terminal"
)
@@ -95,7 +94,7 @@ func createContainer(input NewDockerRunExecutorInput, cli *client.Client) (strin
return "", err
}
input.Logger.Debugf("Created container name=%s id=%v from image %v", input.Name, resp.ID, input.Image)
log.Debugf("ENV ==> %v", input.Env)
input.Logger.Debugf("ENV ==> %v", input.Env)
return resp.ID, nil
}