|
@@ -84,14 +84,14 @@ public final class OpensslCipher {
|
|
String loadingFailure = null;
|
|
String loadingFailure = null;
|
|
try {
|
|
try {
|
|
if (!NativeCodeLoader.buildSupportsOpenssl()) {
|
|
if (!NativeCodeLoader.buildSupportsOpenssl()) {
|
|
- PerformanceAdvisory.LOG.debug("Build does not support openssl");
|
|
|
|
|
|
+ PerformanceAdvisory.LOG.warn("Build does not support openssl");
|
|
loadingFailure = "build does not support openssl.";
|
|
loadingFailure = "build does not support openssl.";
|
|
} else {
|
|
} else {
|
|
initIDs();
|
|
initIDs();
|
|
}
|
|
}
|
|
} catch (Throwable t) {
|
|
} catch (Throwable t) {
|
|
loadingFailure = t.getMessage();
|
|
loadingFailure = t.getMessage();
|
|
- LOG.debug("Failed to load OpenSSL Cipher.", t);
|
|
|
|
|
|
+ LOG.warn("Failed to load OpenSSL Cipher.", t);
|
|
} finally {
|
|
} finally {
|
|
loadingFailureReason = loadingFailure;
|
|
loadingFailureReason = loadingFailure;
|
|
}
|
|
}
|