Merge pull request #1363 from hashicorp/b-vet

Fixes a `go vet` finding with a log message.
This commit is contained in:
James Phillips 2015-10-29 12:50:45 -07:00
commit c2448b0157
1 changed files with 1 additions and 1 deletions

View File

@ -536,7 +536,7 @@ func (c *CheckDocker) Init() error {
var err error
c.dockerClient, err = docker.NewClientFromEnv()
if err != nil {
c.Logger.Println("[DEBUG] Error creating the Docker Client : %s", err.Error())
c.Logger.Printf("[DEBUG] Error creating the Docker client: %s", err.Error())
return err
}
return nil