JNI: change debug printf for setFd() to Info instead of Error, Java app may use I/O callbacks with no fd

pull/153/head
Chris Conlon 2023-10-11 15:03:20 -06:00
parent c96f4e1eb4
commit 7da3a34dd7
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ JNIEXPORT jint JNICALL Java_com_wolfssl_WolfSSLSession_setFd(JNIEnv* jenv,
fdesc = (*jenv)->GetObjectField(jenv, impl, fid);
if (fdesc == NULL) {
printf("Error: FileDescriptor fd object is NULL!\n");
printf("Info: FileDescriptor fd object is NULL!\n");
return SSL_FAILURE;
}