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

Commit 723258a4 authored by Josh Gao's avatar Josh Gao
Browse files

adb: silence noise.

Remove logging statements that don't provide any benefit.

Test: none
Change-Id: Ib7c26fbdb019f4d6bbce2b7fb192cb5e6066e53f
parent f218210f
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -1241,10 +1241,7 @@ void update_transport_status() {
        return true;
    });

    D("update_transport_status: transports_ready = %s", result ? "true" : "false");

    bool ready;

    {
        std::lock_guard<std::mutex> lock(init_mutex);
        transports_ready = result;
@@ -1252,14 +1249,11 @@ void update_transport_status() {
    }

    if (ready) {
        D("update_transport_status: notifying");
        init_cv.notify_all();
    }
}

void adb_notify_device_scan_complete() {
    D("device scan complete");

    {
        std::lock_guard<std::mutex> lock(init_mutex);
        device_scan_complete = true;