1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

logs: reduce verbosity on plugins probing

This commit is contained in:
Andy Green 2021-03-17 12:23:01 +00:00
parent 06509e287d
commit e97a61f22b

View file

@ -50,7 +50,7 @@ lws_plat_dlopen(struct lws_plugin **pplugin, const char *libpath,
l = dlopen(libpath, RTLD_NOW);
if (!l) {
lwsl_err("%s: Error loading DSO: %s\n", __func__, dlerror());
lwsl_info("%s: Error loading DSO: %s\n", __func__, dlerror());
return NULL;
}
@ -64,7 +64,7 @@ lws_plat_dlopen(struct lws_plugin **pplugin, const char *libpath,
hdr = (const lws_plugin_header_t *)dlsym(l, sym);
if (!hdr) {
lwsl_warn("%s: Failed to get export '%s' from %s: %s\n",
lwsl_info("%s: Failed to get export '%s' from %s: %s\n",
__func__, sym, libpath, dlerror());
goto bail;
}