From: Jean-Philippe Andre Date: Thu, 16 Feb 2017 13:00:19 +0000 (+0900) Subject: widget: Reduce WRN to DBG for on_focus_region message X-Git-Tag: upstream/1.20.0~1976 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1166f753fb843591f84482d5288619fa68f1110d;p=platform%2Fupstream%2Fefl.git widget: Reduce WRN to DBG for on_focus_region message Many widgets don't implement this function, and this case is perfectly well handled by the caller. No need to WRN here. --- diff --git a/src/lib/elementary/elm_widget.c b/src/lib/elementary/elm_widget.c index a070c4c..9243bee 100644 --- a/src/lib/elementary/elm_widget.c +++ b/src/lib/elementary/elm_widget.c @@ -222,7 +222,7 @@ _elm_widget_mirrored_reload(Evas_Object *obj) EOLIAN static Eina_Bool _elm_widget_on_focus_region(Eo *obj, Elm_Widget_Smart_Data *_pd EINA_UNUSED, Evas_Coord *x EINA_UNUSED, Evas_Coord *y EINA_UNUSED, Evas_Coord *w EINA_UNUSED, Evas_Coord *h EINA_UNUSED) { - WRN("The %s widget does not implement the \"on_focus_region\" function.", + DBG("The %s widget does not implement the \"on_focus_region\" function.", efl_class_name_get(efl_class_get(obj))); return EINA_FALSE;