diff options
author | José Bollo <jose.bollo@iot.bzh> | 2016-05-27 11:04:07 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2016-05-27 15:00:18 +0200 |
commit | 645b2320fb04edda76e5761a439c865994f36b3a (patch) | |
tree | 387e0f4d8b929ad3d738b763b90f9b32445ad377 | |
parent | a1ed2c12ac2a305a54f35a3dad99b85cbe3113e6 (diff) |
indicates the call to initialisation function
Change-Id: Ia2e27fa2661b539e67e388a7e9f3fc1555281bd7
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
-rw-r--r-- | src/afb-api-so.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afb-api-so.c b/src/afb-api-so.c index 3cf1feab..abe100b0 100644 --- a/src/afb-api-so.c +++ b/src/afb-api-so.c @@ -214,6 +214,7 @@ int afb_api_so_add_plugin(const char *path) desc->interface.daemon.closure = desc; /* init the plugin */ + NOTICE("plugin [%s] calling registering function %s", path, plugin_register_function_v1); desc->plugin = pluginAfbV1RegisterFct(&desc->interface); if (desc->plugin == NULL) { ERROR("plugin [%s] register function failed. continuing...", path); |