raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=b68853fd7dda0f3532dcac3192a2b92af7cc2101
commit b68853fd7dda0f3532dcac3192a2b92af7cc2101 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Jun 25 13:17:04 2015 +0900 ecore con dns - a failed dns lookup is not an err log event spewing out errors for a failed dns lookup is not somehting to ERR out in logs all the time. it is at best a debug log. the caller handles the failed connect itself. @fix --- src/lib/ecore_con/ecore_con_dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore_con/ecore_con_dns.c b/src/lib/ecore_con/ecore_con_dns.c index b88cb11..3e4f14a 100644 --- a/src/lib/ecore_con/ecore_con_dns.c +++ b/src/lib/ecore_con/ecore_con_dns.c @@ -96,7 +96,7 @@ _ecore_con_dns_check(Ecore_Con_DNS *dns) return 1; default: - ERR("resolve failed: %s", dns_strerror(error)); + DBG("resolve failed: %s", dns_strerror(error)); goto error; } --
