summaryrefslogtreecommitdiff
path: root/libs/binder/ProcessState.cpp
diff options
context:
space:
mode:
author Steven Moreland <smoreland@google.com> 2019-07-10 20:04:35 -0700
committer android-build-merger <android-build-merger@google.com> 2019-07-10 20:04:35 -0700
commit967b9f4e1322528db5644cbfe24269e5894d7aa8 (patch)
treee52c1994d721de9e69f6aa117f61bd9e3e834d45 /libs/binder/ProcessState.cpp
parent84f71389cc387d2c68a7467995d4f556bb97080d (diff)
parent0b387109f0eabecc2a07747c6119b687485049b3 (diff)
Merge "libbinder: log driver name when it doesn't open" am: f079d7874a
am: 0b387109f0 Change-Id: Ib65ab4a94d8c2fb1d6026302b522cf2676992e9e
Diffstat (limited to 'libs/binder/ProcessState.cpp')
-rw-r--r--libs/binder/ProcessState.cpp2
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()