diff options
author | Tai Vuong <tvuong@audiokinetic.com> | 2017-12-22 14:52:04 -0500 |
---|---|---|
committer | Tai Vuong <tvuong@audiokinetic.com> | 2018-01-03 21:56:07 +0000 |
commit | e78ac871cb1ea2feb0bd9331f812cf71e07acdf3 (patch) | |
tree | 2f9aa6fa7c4b93527df535764796a00d1e1f6073 | |
parent | 8962ec639b9f8547b8161f7688cd5ed4e8094254 (diff) |
Improve error messages for unable to find endpoint
Added proper error messages
Bug-AGL: SPEC-1207
Change-Id: I5d898f9ef3968021503e531f1b0e189cc878234e
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 f2d7b09..841182e 100644 --- a/ahl-binding/ahl-binding.c +++ b/ahl-binding/ahl-binding.c @@ -1206,7 +1206,7 @@ PUBLIC void audiohlapi_raise_event(json_object * pEventDataJ) } else { - AFB_ERROR("Unable to find endpoint"); + AFB_ERROR("Unable to find endpoint id:%d type:%d for role:%s",endpointID,endpointType,pAudioRole); } // Remove event name from object json_object_object_del(pEventDataJ,"event_name"); |