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

Commit c9e4fdb4 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add log when avoiding fatal with no binder driver" into main

parents 5944038a 9f3668b6
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -621,6 +621,11 @@ ProcessState::ProcessState(const char* driver)
    LOG_ALWAYS_FATAL_IF(!opened.ok(),
                        "Binder driver '%s' could not be opened. Error: %s. Terminating.",
                        driver, error.c_str());
#else
    if (!opened.ok()) {
        ALOGE("Binder driver '%s' could not be opened. Error: %s. There may be future issues.",
              driver, error.c_str());
    }
#endif

    if (opened.ok()) {