aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2018-09-20 15:18:10 +0200
committerJonathan Aillet <jonathan.aillet@iot.bzh>2018-09-20 15:18:10 +0200
commit0f708ba4074648d38319d22b8d35912925462613 (patch)
tree89a8aa2f3fc612b06f97a9c3b8b0d64d1d86c9ec
parent8d5398494b7ad3e6f20144513a82ba3afcae26ed (diff)
Decrease print level when no onload action
Decrease print level when 'OnloadConfig' function is called while no onload action are defined in passed json. Change-Id: I173cb9b6824f7f32cf33a6755ed52f9dcf093ee6 Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
-rw-r--r--ctl-lib/ctl-onload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctl-lib/ctl-onload.c b/ctl-lib/ctl-onload.c
index b537590..6100f2a 100644
--- a/ctl-lib/ctl-onload.c
+++ b/ctl-lib/ctl-onload.c
@@ -35,7 +35,7 @@ int OnloadConfig(AFB_ApiT apiHandle, CtlSectionT *section, json_object *actionsJ
} else {
// Exec time process onload action now
if (!section->actions) {
- AFB_ApiError (apiHandle, "OnloadConfig Cannot Exec Non Existing Onload Action");
+ AFB_ApiWarning (apiHandle, "OnloadConfig Cannot Exec Non Existing Onload Action");
return 1;
}