propper logging

This commit is contained in:
A.Unger
2020-02-12 13:30:20 +01:00
parent 8f43899476
commit ba8e60a714
5 changed files with 9 additions and 3 deletions
+1
View File
@@ -15,6 +15,7 @@ func NewService(opts ...Option) grpc.Service {
grpc.Context(options.Context),
grpc.Address(options.Address),
grpc.Namespace(options.Namespace),
grpc.Logger(options.Logger),
)
hdlr := svc.New(options.Config)
+1 -1
View File
@@ -4,7 +4,7 @@ import (
"context"
"github.com/owncloud/ocis-accounts/pkg/config"
"github.com/owncloud/ocis-pkg/log"
"github.com/owncloud/ocis-pkg/v2/log"
)
// Option defines a single option function.