Change error to warning during handling check.

This commit is contained in:
Satnam Singh 2014-09-26 10:23:16 -07:00
parent c580907183
commit 6bf9fe89f6

View File

@ -57,7 +57,7 @@ func NewContainerHandler(name string) (ContainerHandler, error) {
for _, factory := range factories {
canHandle, err := factory.CanHandle(name)
if err != nil {
return nil, fmt.Errorf("Error trying to work out if we can hande %s: %v", name, err)
glog.V(1).Infof("Error trying to work out if we can hande %s: %v", name, err)
}
if canHandle {
glog.V(1).Infof("Using factory %q for container %q", factory.String(), name)