audio: AudioHalBinderServiceUtil: Make a log message more informative

If a timeout happens, report the name of the service for which the
timeout happens.

Change-Id: Iad0076071f06f0ca5e53e07b1ef97e25e7bae887
Signed-off-by: Bart Van Assche <bvanassche@google.com>
This commit is contained in:
Bart Van Assche
2023-11-06 15:48:00 -08:00
parent 17b3201259
commit 0fde783476

View File

@@ -93,7 +93,7 @@ class AudioHalBinderServiceUtil {
return false;
}
if (!deathHandler.waitForFired(timeoutMs)) {
LOG(ERROR) << "Timeout wait for death";
LOG(ERROR) << "Timeout wait for death of " << mServiceName;
return false;
}
return true;