1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-08-10 21:52:01 +02:00

Embed DebugHandler proto

This commit is contained in:
Milos Gajdos
2019-11-28 11:05:35 +00:00
parent 60e0e81523
commit 265e8ade05
2 changed files with 5 additions and 4 deletions

View File

@@ -17,6 +17,7 @@ var (
type Debug struct {
started int64
proto.DebugHandler
log.Log
}
@@ -55,7 +56,6 @@ func (d *Debug) Logs(ctx context.Context, req *proto.LogRequest, stream proto.De
defer stream.Close()
// TODO: figure out the stream later on
// stream the logs
for _, record := range records {
metadata := make(map[string]string)
for k, v := range record.Metadata {