internal/client: demoted annoying log (#303)

Signed-off-by: Shuaipeng Yu <jackysp@gmail.com>
This commit is contained in:
Jack Yu 2021-09-12 20:45:58 +08:00 committed by GitHub
parent e4229bde58
commit d8891ee28d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -817,7 +817,7 @@ func (c *RPCClient) recycleIdleConnArray() {
conn, ok := c.conns[addr]
if ok {
delete(c.conns, addr)
logutil.BgLogger().Info("recycle idle connection",
logutil.BgLogger().Debug("recycle idle connection",
zap.String("target", addr))
}
c.Unlock()