aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Aillet <jonathan.aillet@iot.bzh>2018-09-20 15:18:10 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2018-12-13 15:02:55 +0100
commitb70147ae683296b62034e531340148a63cec0d3a (patch)
tree89a8aa2f3fc612b06f97a9c3b8b0d64d1d86c9ec
parent23d5a6fcd4ef871980fb45af10b6f63bd19c345c (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;
}