commands, log as info

This commit is contained in:
Kasper Juul Hermansen 2022-11-05 23:25:19 +01:00
parent cd4477b655
commit a5cd89db91
Signed by: kjuulh
GPG Key ID: 0F95C140730F2F23

View File

@ -5,13 +5,14 @@ import (
"log"
"git.front.kjuulh.io/kjuulh/char/pkg/register"
"github.com/hashicorp/go-hclog"
)
type GoCliPlugin struct{}
// Do implements register.Plugin
func (*GoCliPlugin) Do(ctx context.Context, cmd *register.DoCommand) error {
log.Printf("received command: %s", cmd.CommandName)
hclog.L().Info("received command: %s", cmd.CommandName)
return nil
}