Simple fix to format string

This commit is contained in:
Justin Santa Barbara 2015-04-07 08:32:57 -07:00
parent 3442b49701
commit 95e4953239

View File

@ -847,7 +847,7 @@ func (self *manager) watchForNewContainers(quit chan error) error {
err = self.destroyContainer(event.Name)
}
if err != nil {
glog.Warning("Failed to process watch event: %v", err)
glog.Warningf("Failed to process watch event: %v", err)
}
case <-quit:
// Stop processing events if asked to quit.