afb-apiset: reduce verbosity
authorJosé Bollo <jose.bollo@iot.bzh>
Mon, 31 Jul 2017 09:48:48 +0000 (11:48 +0200)
committerJosé Bollo <jose.bollo@iot.bzh>
Mon, 31 Jul 2017 11:16:22 +0000 (13:16 +0200)
Change-Id: Iceffd965f12f7afe658e374c29f13ab0abc8bb19
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
src/afb-apiset.c

index c934e8c..13d806e 100644 (file)
@@ -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);