grpclb: downgrade error logs to warning (#2381)

Warning is more appropriate per: https://github.com/grpc/grpc-go/blob/master/Documentation/log_levels.md#warning
This commit is contained in:
Menghan Li 2018-10-17 14:44:02 -07:00 committed by GitHub
parent 23d111fa0d
commit 491af2b0a4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ func (lb *lbBalancer) watchRemoteBalancer() {
if err == errServerTerminatedConnection {
grpclog.Info(err)
} else {
grpclog.Error(err)
grpclog.Warning(err)
}
}
}