summaryrefslogtreecommitdiffstats
path: root/src/afb-apiset.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-07-31 11:48:48 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-07-31 13:16:22 +0200
commitd28921abf7864d580e289873bde3b86ffa19e629 (patch)
treefb757e453a8e89a8a0bdf17e42f4d8b7fbf57922 /src/afb-apiset.c
parentab50e75b91041f7c4cfad896370fc0029b072d44 (diff)
afb-apiset: reduce verbosity
Change-Id: Iceffd965f12f7afe658e374c29f13ab0abc8bb19 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-apiset.c')
-rw-r--r--src/afb-apiset.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afb-apiset.c b/src/afb-apiset.c
index c934e8cd..13d806ef 100644
--- a/src/afb-apiset.c
+++ b/src/afb-apiset.c
@@ -249,7 +249,7 @@ int afb_apiset_add(struct afb_apiset *set, const char *name, struct afb_api api)
apis->name = name;
set->count++;
- NOTICE("API %s added", name);
+ INFO("API %s added", name);
return 0;
@@ -359,7 +359,7 @@ static int start_api(struct afb_apiset *set, struct api_desc *api, int share_ses
return -1;
}
- NOTICE("API %s starting...", api->name);
+ INFO("API %s starting...", api->name);
if (api->api.itf->service_start) {
api->status = EBUSY;
rc = api->api.itf->service_start(api->api.closure, share_session, onneed, set);