Migrate from codegangsta lib to urfave

This commit is contained in:
Ross Cadogan 2016-10-13 22:57:08 +01:00
parent 61ac18fce5
commit b13e6af70f
13 changed files with 6 additions and 2021 deletions

View file

@ -172,7 +172,10 @@ func (client dockerClient) IsContainerStale(c Container) (bool, error) {
if newImageInfo.ID != oldImageInfo.ID {
log.Infof("Found new %s image (%s)", imageName, newImageInfo.ID)
return true, nil
} else {
log.Debugf("No new images found for %s", c.Name())
}
return false, nil
}