// Journal prints log output for the specified components. func (c *Client) Journal(argv []string) error { usage := `Prints log output for the specified components. Usage: deisctl journal [<target>...] [options] ` // parse command-line arguments args, err := docopt.Parse(usage, argv, true, "", false) if err != nil { return err } return cmd.Journal(args["<target>"].([]string), c.Backend) }
// Journal prints log output for the specified components. func (c *Client) Journal(argv []string) error { return cmd.Journal(argv, c.Backend) }