diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-09-06 10:11:37 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-10-08 15:57:27 +0200 |
commit | 6adfd2cf4db2da2b1c1ce5b2931d38bbfc05c87e (patch) | |
tree | 5b1562bee89f30cfe9a6f76337b1203146c3cb81 | |
parent | 8d5f875e8bead7f10a4a1f227c7b3f93b3fef180 (diff) |
Decrease level of a msg printed in event catcher
Decrease level of a message printed in event catcher
to avoid polluting debug logs.
Change-Id: Id222ddc958f9550da19507537944319888bac016
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
-rw-r--r-- | 4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c b/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c index 214a984..611c663 100644 --- a/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c +++ b/4a-hal/4a-hal-controllers/4a-hal-controllers-cb.c @@ -104,11 +104,11 @@ void HalCtlsDispatchApiEvent(afb_dynapi *apiHandle, const char *evtLabel, json_o return; } - AFB_ApiNotice(apiHandle, - "%s: not an alsacore event '%s' [msg=%s]", - __func__, - evtLabel, - json_object_get_string(eventJ)); + AFB_ApiInfo(apiHandle, + "%s: not an alsacore event '%s' [msg=%s]", + __func__, + evtLabel, + json_object_get_string(eventJ)); CtrlDispatchApiEvent(apiHandle, evtLabel, eventJ); } |