HBASE-26350 Add a DEBUG when we fail the SASL handshake

Closes #3743

Signed-off-by: Pankaj <pankajkumar@apache.org>
Signed-off-by: Tak Lon (Stephen) Wu <taklwu@apache.org>
Signed-off-by: Wellington Chevreuil <wchevreuil@apache.org>
This commit is contained in:
Josh Elser 2021-10-11 17:01:06 -04:00
parent 7827b96d16
commit a372d437b3
1 changed files with 1 additions and 0 deletions

View File

@ -364,6 +364,7 @@ abstract class ServerRpcConnection implements Closeable {
replyToken = saslServer.evaluateResponse(saslToken.hasArray()?
saslToken.array() : saslToken.toBytes());
} catch (IOException e) {
RpcServer.LOG.debug("Failed to execute SASL handshake", e);
IOException sendToClient = e;
Throwable cause = e;
while (cause != null) {