Add debug output support

This commit is contained in:
2021-03-29 17:22:22 -05:00
parent a4638db773
commit 9338631de9
4 changed files with 17 additions and 0 deletions

View File

@ -35,6 +35,9 @@ func LsCmd(ctx Context) (int, error) {
}
lights, err := c.ListLights(selector)
Debugf("%+v\n", lights)
if err != nil {
return ExitFailure, err
}