From d4155411ee1c7d2865a5424b6ad365f3e8e64d45 Mon Sep 17 00:00:00 2001 From: Jacky Wu Date: Thu, 6 Mar 2025 14:41:47 +0800 Subject: [PATCH] fix plugin_wrapper.go log level (#1848) --- plugins/wasm-go/pkg/wrapper/plugin_wrapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/wasm-go/pkg/wrapper/plugin_wrapper.go b/plugins/wasm-go/pkg/wrapper/plugin_wrapper.go index deee346705..c61d59b361 100644 --- a/plugins/wasm-go/pkg/wrapper/plugin_wrapper.go +++ b/plugins/wasm-go/pkg/wrapper/plugin_wrapper.go @@ -344,7 +344,7 @@ func (ctx *CommonPluginCtx[PluginConfig]) OnPluginStart(int) types.OnPluginStart return types.OnPluginStartStatusFailed } } - ctx.vm.log.Error("plugin start successfully") + ctx.vm.log.Info("plugin start successfully") return types.OnPluginStartStatusOK }