fix further breaks

This commit is contained in:
Asim Aslam 2019-12-17 15:56:49 +00:00
parent d502e2f58a
commit b35dfb1086
2 changed files with 3 additions and 3 deletions

View File

@ -71,6 +71,6 @@ func NewLog(opts ...log.Option) log.Log {
} }
return &serviceLog{ return &serviceLog{
Client: newDebugClient(name), Client: NewClient(name),
} }
} }

View File

@ -17,8 +17,8 @@ type debugClient struct {
Client pb.DebugService Client pb.DebugService
} }
// NewDebug provides Debug service implementation // NewClient provides a debug client
func newDebugClient(name string) *debugClient { func NewClient(name string) *debugClient {
// create default client // create default client
cli := client.DefaultClient cli := client.DefaultClient