summaryrefslogtreecommitdiff
path: root/server/InterfaceController.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'server/InterfaceController.cpp')
-rw-r--r--server/InterfaceController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/InterfaceController.cpp b/server/InterfaceController.cpp
index 73e96ee8..dcffe65f 100644
--- a/server/InterfaceController.cpp
+++ b/server/InterfaceController.cpp
@@ -61,7 +61,7 @@ InterfaceController::InterfaceController()
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) {