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

Commit 84f44450 authored by Andy Hung's avatar Andy Hung Committed by Android (Google) Code Review
Browse files

Merge "AudioFlinger: Enable input hal logging"

parents b2d702a9 bfa64966
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -6924,6 +6924,12 @@ void AudioFlinger::RecordThread::dumpInternals(int fd, const Vector<String16>& a
    if (mActiveTracks.size() == 0) {
        dprintf(fd, "  No active record clients\n");
    }

    if (input != nullptr) {
        dprintf(fd, "  Hal stream dump:\n");
        (void)input->stream->dump(fd);
    }

    dprintf(fd, "  Fast capture thread: %s\n", hasFastCapture() ? "yes" : "no");
    dprintf(fd, "  Fast track available: %s\n", mFastTrackAvail ? "yes" : "no");