diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-09-20 15:18:10 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:55 +0100 |
commit | b70147ae683296b62034e531340148a63cec0d3a (patch) | |
tree | 89a8aa2f3fc612b06f97a9c3b8b0d64d1d86c9ec /ctl-lib | |
parent | 23d5a6fcd4ef871980fb45af10b6f63bd19c345c (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>
Diffstat (limited to 'ctl-lib')
-rw-r--r-- | ctl-lib/ctl-onload.c | 2 |
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; } |