grim/convey

Parents 04cb9ec74afa
Children 3e9d186c4b1a
Remove a holdout from the old logger that was messing up the output
--- a/command/collector.go Sun Jul 28 22:53:31 2019 -0500
+++ b/command/collector.go Sun Jul 28 23:01:29 2019 -0500
@@ -28,7 +28,7 @@
func newLogCollector(adapter *log.Entry, level log.Level) collector {
return func(s *bufio.Scanner) {
for s.Scan() {
- adapter.Log(level, nil, s.Text())
+ adapter.Log(level, s.Text())
}
}
}