diff --git a/pkg/log/service.go b/pkg/log/service.go
index 4b24196de55d9390c5b636e9246664c8c0287305..fbf898393a48821f77940ed3c8455e9ba43082e8 100644
--- a/pkg/log/service.go
+++ b/pkg/log/service.go
@@ -3,7 +3,6 @@ package log
 import (
 	"context"
 
-	"git.perx.ru/perxis/perxis-go/pkg/filter"
 	"git.perx.ru/perxis/perxis-go/pkg/options"
 )
 
@@ -32,7 +31,7 @@ type FindRequest struct {
 
 type FindResult struct {
 	Entries []*Entry
-	Filter  *filter.Filter
+	Filter  *Filter
 	Options *options.FindOptions
 	Total   uint32
 }