summaryrefslogtreecommitdiff
path: root/server/InterfaceController.cpp
diff options
context:
space:
mode:
authorSasha Levitskiy <sanek@google.com>2014-06-23 10:51:05 -0700
committerSasha Levitskiy <sanek@google.com>2014-06-23 10:51:05 -0700
commit7b64cdee0f468a5b66ae2439f84364815ae9a795 (patch)
tree24f398339fcc9d05b217861f181e61ce2f9b1743 /server/InterfaceController.cpp
parent6c519f530eee2fd4438b237e157c0b5db25e4ed8 (diff)
Netd: Interface controller: Demote a log message severity from warning to verbose.
Change-Id: Ia8b2e6a0b039c2bda418a5f7138c0aac6b6c643b Signed-off-by: Sasha Levitskiy <sanek@google.com>
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) {