Merge "libbinder: log driver name when it doesn't open"

This commit is contained in:
Treehugger Robot 2019-07-11 02:42:28 +00:00 committed by Gerrit Code Review
commit f079d7874a

View file

@ -466,7 +466,7 @@ ProcessState::ProcessState(const char *driver, size_t mmap_size)
}
}
LOG_ALWAYS_FATAL_IF(mDriverFD < 0, "Binder driver could not be opened. Terminating.");
LOG_ALWAYS_FATAL_IF(mDriverFD < 0, "Binder driver '%s' could not be opened. Terminating.", driver);
}
ProcessState::~ProcessState()