8144957: Remove PICL warning message

There is no need to print any error/warning message when a library needed for performance optimization is not found on the system

Reviewed-by: poonam, kvn
This commit is contained in:
Shafi Ahmad 2016-02-08 15:46:25 +05:30 committed by Kevin Walls
parent 4096556cc6
commit aa21ff0460

View File

@ -246,7 +246,6 @@ bool PICL::bind_library_functions() {
bool PICL::open_library() {
_dl_handle = dlopen("libpicl.so.1", RTLD_LAZY);
if (_dl_handle == NULL) {
warning("PICL (libpicl.so.1) is missing. Performance will not be optimal.");
return false;
}
if (!bind_library_functions()) {