any-sync/metric/log_test.go
Sergey Cherepanov 0664c310fa
request log
2023-05-04 17:39:23 +02:00

13 lines
217 B
Go

package metric
import (
"context"
"github.com/anytypeio/any-sync/app/logger"
"testing"
)
func TestLog(t *testing.T) {
m := &metric{rpcLog: logger.NewNamed("rpcLog")}
m.RequestLog(context.Background(), "rpc")
}