diff options
Diffstat (limited to 'light/service.cpp')
-rw-r--r-- | light/service.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/light/service.cpp b/light/service.cpp index 8f6fa88..27a4ebf 100644 --- a/light/service.cpp +++ b/light/service.cpp @@ -1,5 +1,6 @@ /* - * Copyright 2018 The Android Open Source Project + * Copyright (C) 2018 The Android Open Source Project + * Copyright (C) 2020 The LineageOS Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,6 +17,7 @@ #define LOG_TAG "android.hardware.light@2.0-service.xiaomi_sdm660" +#include <android-base/logging.h> #include <hidl/HidlTransportSupport.h> #include "Light.h" @@ -23,28 +25,26 @@ using android::hardware::configureRpcThreadpool; using android::hardware::joinRpcThreadpool; -using android::hardware::light::V2_0::ILight; using android::hardware::light::V2_0::implementation::Light; using android::OK; -using android::sp; using android::status_t; int main() { - android::sp<ILight> service = new Light(); + android::sp<Light> service = new Light(); configureRpcThreadpool(1, true); status_t status = service->registerAsService(); if (status != OK) { - ALOGE("Cannot register Light HAL service."); + LOG(ERROR) << "Cannot register Light HAL service."; return 1; } - ALOGI("Light HAL service ready."); + LOG(DEBUG) << "Light HAL service ready."; joinRpcThreadpool(); - ALOGI("Light HAL service failed to join thread pool."); + LOG(ERROR) << "Light HAL service failed to join thread pool."; return 1; } |