From 0fde7834764e8d03d81de7432a5dd67748cb4846 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Mon, 6 Nov 2023 15:48:00 -0800 Subject: [PATCH] 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 --- audio/aidl/vts/AudioHalBinderServiceUtil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/aidl/vts/AudioHalBinderServiceUtil.h b/audio/aidl/vts/AudioHalBinderServiceUtil.h index 1a19ae40e8..4ebc1b18b5 100644 --- a/audio/aidl/vts/AudioHalBinderServiceUtil.h +++ b/audio/aidl/vts/AudioHalBinderServiceUtil.h @@ -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;