Bump error log level

This commit is contained in:
Michael Schurter
2017-06-21 14:23:58 -07:00
parent 202394681c
commit 81b942ebb0

View File

@@ -621,7 +621,7 @@ func (d *DockerDriver) detectIP(c *docker.Container) (string, bool) {
// This should only happen if there's been a coding error (such
// as not calling InspetContainer after CreateContainer). Code
// defensively in case the Docker API changes subtly.
d.logger.Printf("[WARN] driver.docker: no network settings for container %s", c.ID)
d.logger.Printf("[ERROR] driver.docker: no network settings for container %s", c.ID)
return "", false
}
ip, ipName := "", ""