add a todo to remember to remove log reformatting
License: MIT Signed-off-by: Steven Allen <steven@stebalien.com>
Steven Allen committed
Oct 31, 2018 at 04:53 UTC
16d70eac326eca45dd96ee7447afd548114e73d9
1 file changed
+2
core/commands/log.go
+2
@@ -110,6 +110,8 @@ Outputs event log messages (not other log messages) as they are generated.
110
defer w1.Close()
111
<-ctx.Done()
112
}()
113
+ // Reformat the logs as ndjson
114
+ // TODO: remove this: #5709
115
go func() {
116
defer w2.Close()
117
decoder := json.NewDecoder(r1)