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

Commit f3f3991b authored by Rachel Lee's avatar Rachel Lee
Browse files

Fix status log in getLatestVsyncEventData

status.toString8 lists error code and message already formatted.

Bug: 283421301
Test: ABTD
Change-Id: Ica98e4d8a7c6aef39cc2223c458381a07341765d
parent b9aadd30
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -99,7 +99,7 @@ status_t DisplayEventReceiver::getLatestVsyncEventData(
    if (mEventConnection != nullptr) {
        auto status = mEventConnection->getLatestVsyncEventData(outVsyncEventData);
        if (!status.isOk()) {
            ALOGE("Failed to get latest vsync event data: %s", status.exceptionMessage().c_str());
            ALOGE("Failed to get latest vsync event data: %s", status.toString8().c_str());
            return status.transactionError();
        }
        return NO_ERROR;