diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-10-16 16:53:26 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-10-16 16:53:26 +0200 |
commit | 201b3b1745c1d5138d904a37a82d185bc610c4da (patch) | |
tree | 0ac0cd000f196bb7be6c93ce359d88459dcff622 | |
parent | 32bc7ed3914171cd7945551a5ba82afe909afe32 (diff) |
afb-api-so: improve error messages
Change-Id: I3bbf11890800a8b05c9cfaa8bd10b50a0b22c245
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/afb-api-so.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-api-so.c b/src/afb-api-so.c index 2a0f9d6e..acdb9b57 100644 --- a/src/afb-api-so.c +++ b/src/afb-api-so.c @@ -71,7 +71,7 @@ static int load_binding(const char *path, int force, struct afb_apiset *apiset) if (force) ERROR("binding [%s] not loadable: %s", path, dlerror()); else - INFO("binding [%s] not loadable: %s", path, dlerror()); + WARNING("binding [%s] not loadable: %s", path, dlerror()); goto error; } |