From 3678d1d8154225b69508721fabec35dc23f83174 Mon Sep 17 00:00:00 2001 From: kjuulh Date: Sat, 5 Nov 2022 23:25:44 +0100 Subject: [PATCH] commands, log as info --- plugins/gocli/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/gocli/main.go b/plugins/gocli/main.go index b57e57f..852db72 100644 --- a/plugins/gocli/main.go +++ b/plugins/gocli/main.go @@ -12,7 +12,7 @@ type GoCliPlugin struct{} // Do implements register.Plugin func (*GoCliPlugin) Do(ctx context.Context, cmd *register.DoCommand) error { - hclog.L().Info("received command: %s", cmd.CommandName) + hclog.L().Error("received command: %s", cmd.CommandName) return nil }