Skip to content
Snippets Groups Projects
Commit 042aa2c4 authored by Niklas Eiling's avatar Niklas Eiling
Browse files

lower error message when loading a cuda library before rpc initialization from error to warning

parent 06bdb378
No related branches found
No related tags found
No related merge requests found
......@@ -259,7 +259,7 @@ void *dlopen(const char *filename, int flag)
LOG(LOG_DEBUG, "replacing dlopen call to %s with cricket-client.so", filename);
dl_handle = dlopen_orig("cricket-client.so", flag);
if (clnt == NULL) {
LOGE(LOG_ERROR, "rpc seems to be uninitialized");
LOGE(LOG_WARNING, "rpc seems to be uninitialized while loading %s", filename);
}
return dl_handle;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment