fix: correct typo in ProxyGroup health check log message (#2575)

This commit is contained in:
Hung-I Wang
2026-02-27 10:55:44 +08:00
parent c251e411e5
commit 3035ae89e3

View File

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