Navigation Menu

Skip to content

Commit

Permalink
Output service hash and sid in command service detail
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasMahe committed Dec 7, 2018
1 parent c03afb4 commit 7fa3e65
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions commands/service_detail.go
Expand Up @@ -38,6 +38,8 @@ func (c *serviceDetailCmd) runE(cmd *cobra.Command, args []string) error {
return err
}
fmt.Printf("name: %s\n", pretty.Bold(service.Name))
fmt.Printf("sid: %s\n", pretty.Bold(service.SID))
fmt.Printf("hash: %s\n", pretty.Bold(service.Hash))
fmt.Println("events:")
for _, event := range service.Events {
params := []string{}
Expand Down

0 comments on commit 7fa3e65

Please sign in to comment.