1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 17:36:38 +08:00

Merge pull request #2637 from ipfs/feature/2636-marshal-log-ls

Marshal log ls better
This commit is contained in:
Jeromy Johnson
2016-05-06 19:42:37 -07:00

View File

@ -3,7 +3,6 @@ package commands
import (
"fmt"
"io"
"strings"
logging "gx/ipfs/QmaDNZ4QMdBdku1YZWBysufYyoQt1negQGNav6PLYarbY8/go-log"
@ -82,13 +81,12 @@ subsystems of a running daemon.
`,
},
Run: func(req cmds.Request, res cmds.Response) {
output := strings.Join(logging.GetSubsystems(), "\n")
res.SetOutput(&MessageOutput{output + "\n"})
res.SetOutput(&stringList{logging.GetSubsystems()})
},
Marshalers: cmds.MarshalerMap{
cmds.Text: MessageTextMarshaler,
cmds.Text: stringListMarshaler,
},
Type: MessageOutput{},
Type: stringList{},
}
var logTailCmd = &cmds.Command{