diff options
| author | 2019-07-10 20:13:49 -0700 | |
|---|---|---|
| committer | 2019-07-10 20:13:49 -0700 | |
| commit | c9c35392f1ce71f00c4b5f7cbb472f2d795f0bda (patch) | |
| tree | 4e13b6e5c94b694a11c2a992ff25494412968bd7 /libs/binder/ProcessState.cpp | |
| parent | 24e2f5f21fd4443747e462e54f0d91a804f23ab9 (diff) | |
| parent | 967b9f4e1322528db5644cbfe24269e5894d7aa8 (diff) | |
Merge "libbinder: log driver name when it doesn't open" am: f079d7874a am: 0b387109f0
am: 967b9f4e13
Change-Id: I4c2a3f44693963df75081088272235ff41dba662
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() |