aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTai Vuong <tvuong@audiokinetic.com>2017-12-20 11:21:23 -0500
committerTai Vuong <tvuong@audiokinetic.com>2017-12-20 11:21:36 -0500
commit9f78bf8549ebd0e2a182b30e316f9bc19e50bc4f (patch)
treed14aeebaaaf3dda55a8141b65cebaf05effea382
parent7c3b7df2b1fb4d29df74828861df5b9641134530 (diff)
SPEC-1207 alh-4a error message add streamID information to unsubscribe error.
Change-Id: Ib23b4d1c1d234678f3f0d1ad7628c4448985e8db Signed-off-by: Tai Vuong <tvuong@audiokinetic.com>
-rw-r--r--ahl-binding/ahl-binding.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ahl-binding/ahl-binding.c b/ahl-binding/ahl-binding.c
index 446d6e3..f2d7b09 100644
--- a/ahl-binding/ahl-binding.c
+++ b/ahl-binding/ahl-binding.c
@@ -152,7 +152,7 @@ static int CloseStream(AHLClientCtxT * in_pClientCtx, streamID_t streamID,struct
if (iValid) {
err = afb_req_unsubscribe(*pReq,pStreamInfo->streamStateEvent);
if (err) {
- AFB_ERROR("Could not unsubscribe to stream specific state change event");
+ AFB_ERROR("Could not unsubscribe state change event for streamID:%i with AudioRole: %s", streamID, pStreamInfo->pRoleName);
return AHL_FAIL;
}
}