Fixes a go vet finding.

This commit is contained in:
James Phillips 2015-10-29 12:45:48 -07:00
parent 165a3ff7fc
commit 9107521c17
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