From ae93fb0479e57967fbdf440482c729d8da172080 Mon Sep 17 00:00:00 2001 From: j2rong4cn Date: Mon, 3 Nov 2025 16:40:19 +0800 Subject: [PATCH] fix(host): change log level from Error to Info for informational messages --- internal/plugin/host.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/plugin/host.go b/internal/plugin/host.go index f92e4c89..f756f255 100644 --- a/internal/plugin/host.go +++ b/internal/plugin/host.go @@ -109,7 +109,7 @@ func (host *DriverHost) Log(level plugin_warp.LogLevel, message string) { } else if level.Error != nil { log.Errorln(message) } else if level.Info != nil { - log.Errorln(message) + log.Infoln(message) } else if level.Warn != nil { log.Warnln(message) } else {