diff --git a/internal/util/idlocker.go b/internal/util/idlocker.go index af044c238..1ca2cc31b 100644 --- a/internal/util/idlocker.go +++ b/internal/util/idlocker.go @@ -18,7 +18,6 @@ import ( "sync" "k8s.io/apimachinery/pkg/util/sets" - klog "k8s.io/klog/v2" ) const ( @@ -254,6 +253,6 @@ func (ol *OperationLock) release(op operation, volumeID string) { } } default: - klog.Errorf("%v operation not supported", op) + ErrorLog("%v operation not supported", op) } }