Skip to content

Commit 1d27b28

Browse files
committed
cleanup: remove useless logs
1 parent 7f67a70 commit 1d27b28

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pkg/blob/identityserver.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,10 @@ import (
2424

2525
"github.com/container-storage-interface/spec/lib/go/csi"
2626
"github.com/golang/protobuf/ptypes/wrappers"
27-
"k8s.io/klog/v2"
2827
)
2928

3029
// GetPluginInfo return the version and name of the plugin
3130
func (f *Driver) GetPluginInfo(ctx context.Context, req *csi.GetPluginInfoRequest) (*csi.GetPluginInfoResponse, error) {
32-
klog.V(2).Infof("Using default GetPluginInfo")
33-
3431
if f.Name == "" {
3532
return nil, status.Error(codes.Unavailable, "Driver name not configured")
3633
}
@@ -55,7 +52,6 @@ func (f *Driver) Probe(ctx context.Context, req *csi.ProbeRequest) (*csi.ProbeRe
5552

5653
// GetPluginCapabilities returns the capabilities of the plugin
5754
func (f *Driver) GetPluginCapabilities(ctx context.Context, req *csi.GetPluginCapabilitiesRequest) (*csi.GetPluginCapabilitiesResponse, error) {
58-
klog.V(2).Infof("Using default capabilities")
5955
return &csi.GetPluginCapabilitiesResponse{
6056
Capabilities: []*csi.PluginCapability{
6157
{

0 commit comments

Comments
 (0)