Change error to warning during handling check.
This commit is contained in:
parent
c580907183
commit
6bf9fe89f6
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user