Pārlūkot izejas kodu

Add more error details on plugin get

Seeing this `ErrNotImplements` in some of our logs and it's not very
helpful because we don't know what plugin is causing it or even what the
requested interface is.

```
{"message":"legacy plugin: Plugin does not implement the requested driver"}
```

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Brian Goff 5 gadi atpakaļ
vecāks
revīzija
b1a3fe4934
1 mainītis faili ar 2 papildinājumiem un 1 dzēšanām
  1. 2 1
      pkg/plugins/plugins.go

+ 2 - 1
pkg/plugins/plugins.go

@@ -24,6 +24,7 @@ package plugins // import "github.com/docker/docker/pkg/plugins"
 
 
 import (
 import (
 	"errors"
 	"errors"
+	"fmt"
 	"sync"
 	"sync"
 	"time"
 	"time"
 
 
@@ -265,7 +266,7 @@ func Get(name, imp string) (*Plugin, error) {
 		logrus.Debugf("%s implements: %s", name, imp)
 		logrus.Debugf("%s implements: %s", name, imp)
 		return pl, nil
 		return pl, nil
 	}
 	}
-	return nil, ErrNotImplements
+	return nil, fmt.Errorf("%w: plugin=%q, requested implementation=%q", ErrNotImplements, name, imp)
 }
 }
 
 
 // Handle adds the specified function to the extpointHandlers.
 // Handle adds the specified function to the extpointHandlers.