From 3035ae89e39ac5ea02d21e7bb17df1de45849e79 Mon Sep 17 00:00:00 2001 From: Hung-I Wang Date: Fri, 27 Feb 2026 10:55:44 +0800 Subject: [PATCH] fix: correct typo in ProxyGroup health check log message (#2575) --- adapter/outboundgroup/groupbase.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapter/outboundgroup/groupbase.go b/adapter/outboundgroup/groupbase.go index 9e705677..1a1b3cfd 100644 --- a/adapter/outboundgroup/groupbase.go +++ b/adapter/outboundgroup/groupbase.go @@ -272,7 +272,7 @@ func (gb *GroupBase) onDialFailed(adapterType C.AdapterType, err error, fn func( log.Debugln("ProxyGroup: %s failed count: %d", gb.Name(), gb.failedTimes) if gb.failedTimes >= gb.maxFailedTimes { - log.Warnln("because %s failed multiple times, active health check", gb.Name()) + log.Warnln("because %s failed multiple times, activate health check", gb.Name()) fn() } }