diff options
| author | Sasha Levitskiy <sanek@google.com> | 2014-06-23 10:51:05 -0700 |
|---|---|---|
| committer | Sasha Levitskiy <sanek@google.com> | 2014-06-23 10:51:05 -0700 |
| commit | 7b64cdee0f468a5b66ae2439f84364815ae9a795 (patch) | |
| tree | 24f398339fcc9d05b217861f181e61ce2f9b1743 /server/InterfaceController.cpp | |
| parent | 6c519f530eee2fd4438b237e157c0b5db25e4ed8 (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.cpp | 2 |
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) { |
