diff options
-rw-r--r-- | src/4a-internals-hal/4a-internals-hal-cb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/4a-internals-hal/4a-internals-hal-cb.c b/src/4a-internals-hal/4a-internals-hal-cb.c index 6afc965..71bf464 100644 --- a/src/4a-internals-hal/4a-internals-hal-cb.c +++ b/src/4a-internals-hal/4a-internals-hal-cb.c @@ -1217,10 +1217,10 @@ int InternalHalHandleHalDependencies(afb_api_t apiHandle, if(halCurrentDeviceToProbe->deviceClass == MANDATORY_PROBED_DEVICE && ! halCurrentDeviceToProbe->deviceData) { - AFB_API_WARNING(apiHandle, - "Mandatory device to probe not found, uid:'%s' and request:'%s'", - halCurrentDeviceToProbe->uid, - json_object_get_string(halCurrentDeviceToProbe->requestedDeviceJ)); + AFB_API_ERROR(apiHandle, + "Mandatory device to probe not found, uid:'%s' and request:'%s'", + halCurrentDeviceToProbe->uid, + json_object_get_string(halCurrentDeviceToProbe->requestedDeviceJ)); return -5; } } |