connman module - lower err's to warns as this actually happens

and... it's not an errort as such - it's the other end not supporting
something. that's ok with this ipc api i would say.

@fix
This commit is contained in:
Carsten Haitzler 2017-07-30 22:59:53 +09:00
parent d870549c0f
commit c078a6df1d
1 changed files with 4 additions and 4 deletions

View File

@ -578,13 +578,13 @@ static void _manager_get_prop_cb(void *data, const Eldbus_Message *msg,
if (eldbus_message_error_get(msg, &name, &text))
{
ERR("Could not get properties. %s: %s", name, text);
WRN("Could not get properties. %s: %s", name, text);
return;
}
if (!eldbus_message_arguments_get(msg, "a{sv}", &array))
{
ERR("Error getting arguments.");
WRN("Error getting arguments.");
return;
}
@ -635,13 +635,13 @@ static void _manager_get_wifi_prop_cb(void *data, const Eldbus_Message *msg,
if (eldbus_message_error_get(msg, &name, &message))
{
ERR("Could not get properties. %s: %s", name, message);
WRN("Could not get properties. %s: %s", name, message);
return;
}
if (!eldbus_message_arguments_get(msg, "a{sv}", &array))
{
ERR("Error getting arguments.");
WRN("Error getting arguments.");
return;
}