Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 704fe2d6 authored by Felipe Leme's avatar Felipe Leme
Browse files

resolve merge conflicts of 4acdde9e to nyc-mr1-dev-plus-aosp

Change-Id: I2ed3041dd979368f149b6fccc84621e56c118db8
parents a6b4b217 4acdde9e
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -78,11 +78,13 @@ static void handle_keychord() {
    if (adb_enabled == "running") {
        Service* svc = ServiceManager::GetInstance().FindServiceByKeychord(id);
        if (svc) {
            LOG(INFO) << "Starting service " << svc->name() << " from keychord...";
            LOG(INFO) << "Starting service " << svc->name() << " from keychord " << id;
            svc->Start();
        } else {
            LOG(ERROR) << "service for keychord " << id << " not found";
            LOG(ERROR) << "Service for keychord " << id << " not found";
        }
    } else {
        LOG(WARNING) << "Not starting service for keychord " << id << " because ADB is disabled";
    }
}