raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=c078a6df1d01592dc9aa9f56fa4b8835e786a93e
commit c078a6df1d01592dc9aa9f56fa4b8835e786a93e Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Sun Jul 30 22:59:53 2017 +0900 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 --- src/modules/connman/e_connman.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/connman/e_connman.c b/src/modules/connman/e_connman.c index 3adc5da5c..fb6fcf959 100644 --- a/src/modules/connman/e_connman.c +++ b/src/modules/connman/e_connman.c @@ -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; } --