Eolian: Fix copy&paste error and lower log level of spammy func

This commit is contained in:
Kai Huuhko 2014-06-18 10:02:23 +03:00
parent 11bc1b64a5
commit 99f9220fea
1 changed files with 3 additions and 3 deletions

View File

@ -145,7 +145,7 @@ def eo_file_parse(filename):
if isinstance(filename, unicode): filename = PyUnicode_AsUTF8String(filename)
cdef bint ret = eolian_eo_file_parse(filename)
if not ret:
EINA_LOG_DOM_WARN(EOLIAN_DOM, "Failure in directory_scan()", NULL)
EINA_LOG_DOM_WARN(EOLIAN_DOM, "Failure in eo_file_parse()", NULL)
return ret
def init():
@ -845,8 +845,8 @@ cdef class Implement(object):
&function,
&type
):
EINA_LOG_DOM_WARN(
EOLIAN_DOM, "Fetching info for %s failed",
EINA_LOG_DOM_DBG(
EOLIAN_DOM, "Fetching info for Implement %s failed",
eolian_implement_full_name_get(self.impl)
)
return None