diff options
author | Tai Vuong <tvuong@audiokinetic.com> | 2017-12-20 11:21:23 -0500 |
---|---|---|
committer | Tai Vuong <tvuong@audiokinetic.com> | 2017-12-20 16:54:08 +0000 |
commit | 8962ec639b9f8547b8161f7688cd5ed4e8094254 (patch) | |
tree | b0ffd6686600e983171058e4d70c72c56cdaeb1a | |
parent | 99aeadc1e2f48f3d38e3fea2a668832bb0e02204 (diff) |
SPEC-1207 alh-4a error message add streamID information to unsubscribe error.eel_4.99.5eel/4.99.54.99.5
Change-Id: Ib23b4d1c1d234678f3f0d1ad7628c4448985e8db
Signed-off-by: Tai Vuong <tvuong@audiokinetic.com>
-rw-r--r-- | ahl-binding/ahl-binding.c | 2 |
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; } } |