MCPcopy Index your code
hub / github.com/jetify-com/devbox / logCmd

Function logCmd

internal/boxcli/log.go:13–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11)
12
13func logCmd() *cobra.Command {
14 cmd := &cobra.Command{
15 Use: "log <event-name> [<event-specific-args>]",
16 Hidden: true,
17 RunE: func(cmd *cobra.Command, args []string) error {
18 return doLogCommand(cmd, args)
19 },
20 }
21
22 return cmd
23}
24
25func doLogCommand(cmd *cobra.Command, args []string) error {
26 if len(args) < 1 {

Callers 1

RootCmdFunction · 0.85

Calls 1

doLogCommandFunction · 0.85

Tested by

no test coverage detected