diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-09-20 15:18:10 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-09-20 15:18:10 +0200 |
commit | 0f708ba4074648d38319d22b8d35912925462613 (patch) | |
tree | 89a8aa2f3fc612b06f97a9c3b8b0d64d1d86c9ec | |
parent | 8d5398494b7ad3e6f20144513a82ba3afcae26ed (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.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; } |