diff options
author | José Bollo <jose.bollo@iot.bzh> | 2017-04-03 17:33:35 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2017-04-03 17:33:35 +0200 |
commit | 19175241afd5bec09fb6688ff835fc30fc24a8dd (patch) | |
tree | da4fab9a3cb30008f5cd7c17de1fa3765e97c4de | |
parent | e3a5ff981c25dcb609fe8cc5396a50b81138ee63 (diff) |
Add notification message for added API
Change-Id: I797afeaa0758f2fef854a1ffaee398aff6c9041e
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/afb-apis.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/afb-apis.c b/src/afb-apis.c index a0af0800..cce21e03 100644 --- a/src/afb-apis.c +++ b/src/afb-apis.c @@ -136,6 +136,8 @@ int afb_apis_add(const char *name, struct afb_api api) apis->name = name; apis_count++; + NOTICE("API %s added", name); + return 0; error: |