From: Jose Bollo Date: Tue, 16 Oct 2018 17:58:03 +0000 (+0200) Subject: afb-apiset: Reorder priority of messages X-Git-Tag: 6.99.1~13 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-binder.git;a=commitdiff_plain;h=5ee4995733cc3f53b8b55d045530918b2125e78a afb-apiset: Reorder priority of messages The message before starting has now a greater priority than the one stating that start completed. Expecting that in case of problem it wil be cleaner. Change-Id: I2c27eb70f218d0492291c3eab4f8396ab5a6c093 Signed-off-by: Jose Bollo --- diff --git a/src/afb-apiset.c b/src/afb-apiset.c index 332d52da..2df3c592 100644 --- a/src/afb-apiset.c +++ b/src/afb-apiset.c @@ -784,7 +784,7 @@ static int start_api(struct api_desc *api) return -1; } - INFO("API %s starting...", api->name); + NOTICE("API %s starting...", api->name); api->status = EBUSY; rc = start_array_classes(&api->require.classes); if (rc < 0) @@ -803,7 +803,7 @@ static int start_api(struct api_desc *api) api->status = errno ?: ECANCELED; return -1; } - NOTICE("API %s started", api->name); + INFO("API %s started", api->name); api->status = 0; return 0; }