cedric pushed a commit to branch efl-1.8. http://git.enlightenment.org/core/efl.git/commit/?id=5fc2fe86250d3d96f28207a3259f8f89616ffda0
commit 5fc2fe86250d3d96f28207a3259f8f89616ffda0 Author: Cedric BAIL <cedric.b...@samsung.com> Date: Fri Dec 13 11:27:20 2013 +0900 emotion: lower warning on webcam access error to information (Not critical anyway). --- src/lib/emotion/emotion_webcam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/emotion/emotion_webcam.c b/src/lib/emotion/emotion_webcam.c index 6302742..49992c3 100644 --- a/src/lib/emotion/emotion_webcam.c +++ b/src/lib/emotion/emotion_webcam.c @@ -131,7 +131,7 @@ _emotion_check_device(Emotion_Webcam *ew) on_error: #endif - EINA_LOG_ERR("'%s' is not a webcam ['%s']", ew->name, strerror(errno)); + INF("'%s' is not a webcam ['%s']", ew->name, strerror(errno)); eina_stringshare_del(ew->syspath); eina_stringshare_del(ew->device); eina_stringshare_del(ew->name); --