summaryrefslogtreecommitdiff
path: root/wifi_keystore_hal_connector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wifi_keystore_hal_connector.cpp')
-rw-r--r--wifi_keystore_hal_connector.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/wifi_keystore_hal_connector.cpp b/wifi_keystore_hal_connector.cpp
index 271e444..4884f77 100644
--- a/wifi_keystore_hal_connector.cpp
+++ b/wifi_keystore_hal_connector.cpp
@@ -43,7 +43,9 @@ void WifiKeystoreHalConnector::start() {
configureRpcThreadpool(1, false /* callerWillJoin */);
android::sp<IKeystore> wifiKeystoreHalService = new Keystore();
android::status_t err = wifiKeystoreHalService->registerAsService();
- CHECK(err == android::OK) << "Cannot register wifi keystore HAL service: " << err;
+ if (err != android::OK) {
+ LOG(INFO) << "Did not register wifi keystore HIDL HAL service: " << err;
+ }
}
} // namespace wificond
} // namespace android