diff options
author | 2019-07-11 02:42:28 +0000 | |
---|---|---|
committer | 2019-07-11 02:42:28 +0000 | |
commit | f079d7874ad6f3faf6c5940f71dc186d1de3519d (patch) | |
tree | 8374362958911255f6bdf6a98be3120a7e526ac8 /libs/binder/ProcessState.cpp | |
parent | ea18143b0d813c8b6c546550b6a270d1d08745b1 (diff) | |
parent | 8c78e2e2fc3d028481421b834c0990e8f86ce23f (diff) |
Merge "libbinder: log driver name when it doesn't open"
Diffstat (limited to 'libs/binder/ProcessState.cpp')
-rw-r--r-- | libs/binder/ProcessState.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp index 2d156df56b..b25cd7bf12 100644 --- a/libs/binder/ProcessState.cpp +++ b/libs/binder/ProcessState.cpp @@ -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() |