Log only on debug log level in OpenSslEngine
Motivation: At the moment we log priming read and handshake errors via info log level and still throw a SSLException that contains the error. We should only log with debug level to generate less noise. Modifications: Change logging to debug level. Result: Less noise .
This commit is contained in:
parent
0bd89bacea
commit
270e0785fd
@ -575,8 +575,8 @@ public final class OpenSslEngine extends SSLEngine {
|
||||
long error = SSL.getLastErrorNumber();
|
||||
if (OpenSsl.isError(error)) {
|
||||
String err = SSL.getErrorString(error);
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info(
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug(
|
||||
"SSL_read failed: primingReadResult: " + lastPrimingReadResult +
|
||||
"; OpenSSL error: '" + err + '\'');
|
||||
}
|
||||
@ -1167,8 +1167,8 @@ public final class OpenSslEngine extends SSLEngine {
|
||||
long error = SSL.getLastErrorNumber();
|
||||
if (OpenSsl.isError(error)) {
|
||||
String err = SSL.getErrorString(error);
|
||||
if (logger.isInfoEnabled()) {
|
||||
logger.info(
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug(
|
||||
"SSL_do_handshake failed: OpenSSL error: '" + err + '\'');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user