Netd: Interface controller: Demote a log message severity from warning to verbose.
Change-Id: Ia8b2e6a0b039c2bda418a5f7138c0aac6b6c643b
Signed-off-by: Sasha Levitskiy <sanek@google.com>
diff --git a/server/InterfaceController.cpp b/server/InterfaceController.cpp
index 73e96ee..dcffe65 100644
--- a/server/InterfaceController.cpp
+++ b/server/InterfaceController.cpp
@@ -61,7 +61,7 @@
libh_ = dlopen(if_cmd_lib_file_name, RTLD_NOW | RTLD_LOCAL);
if (libh_ == NULL) {
const char *err_str = dlerror();
- ALOGW("Warning (%s) while opening the net interface command library", err_str ? err_str : "unknown");
+ ALOGV("Warning (%s) while opening the net interface command library", err_str ? err_str : "unknown");
} else {
sendCommandInit_ = (int (*)(void))dlsym(libh_, set_cmd_init_func_name);
if (sendCommandInit_ == NULL) {