commands, log as info

This commit is contained in:
2022-11-05 23:27:47 +01:00
parent 3678d1d815
commit c724bff698
4 changed files with 5 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ type GoCliPlugin struct{}
// Do implements register.Plugin
func (*GoCliPlugin) Do(ctx context.Context, cmd *register.DoCommand) error {
hclog.L().Error("received command: %s", cmd.CommandName)
hclog.L().Info("received command: %s", cmd.CommandName)
return nil
}