fix plugin_wrapper.go log level (#1848)

This commit is contained in:
Jacky Wu
2025-03-06 14:41:47 +08:00
committed by GitHub
parent d721c235cb
commit d4155411ee

View File

@@ -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
}