Move some printfs to eina_log and remove debug message

SVN revision: 44693
This commit is contained in:
Iván Briano 2009-12-23 15:26:29 +00:00
parent 1aaab52a75
commit 005ee7f261
1 changed files with 5 additions and 6 deletions

View File

@ -29,8 +29,8 @@ edje_external_type_register(const char *type_name, const Edje_External_Type *typ
if (type_info->abi_version != EDJE_EXTERNAL_TYPE_ABI_VERSION) if (type_info->abi_version != EDJE_EXTERNAL_TYPE_ABI_VERSION)
{ {
printf("EDJE ERROR: external type '%s' (%p) has incorrect abi version. " ERR("external type '%s' (%p) has incorrect abi version. "
"got %#x where %#x was expected.\n", "got %#x where %#x was expected.",
type_name, type_info, type_name, type_info,
type_info->abi_version, EDJE_EXTERNAL_TYPE_ABI_VERSION); type_info->abi_version, EDJE_EXTERNAL_TYPE_ABI_VERSION);
return EINA_FALSE; return EINA_FALSE;
@ -97,8 +97,8 @@ edje_external_type_array_register(const Edje_External_Type_Info *array)
{ {
if (itr->info->abi_version != EDJE_EXTERNAL_TYPE_ABI_VERSION) if (itr->info->abi_version != EDJE_EXTERNAL_TYPE_ABI_VERSION)
{ {
printf("EDJE ERROR: external type '%s' (%p) has incorrect abi " ERR("external type '%s' (%p) has incorrect abi "
"version. got %#x where %#x was expected.\n", "version. got %#x where %#x was expected.",
itr->name, itr->info, itr->name, itr->info,
itr->info->abi_version, EDJE_EXTERNAL_TYPE_ABI_VERSION); itr->info->abi_version, EDJE_EXTERNAL_TYPE_ABI_VERSION);
continue; continue;
@ -277,7 +277,7 @@ _edje_external_type_add(const char *type_name, Evas *evas, Evas_Object *parent,
type = eina_hash_find(type_registry, type_name); type = eina_hash_find(type_registry, type_name);
if (!type) if (!type)
{ {
printf("EDJE ERROR: external type '%s' not registered\n", type_name); ERR("external type '%s' not registered", type_name);
return NULL; return NULL;
} }
@ -290,7 +290,6 @@ _edje_external_type_add(const char *type_name, Evas *evas, Evas_Object *parent,
evas_object_data_set(obj, "Edje_External_Type", type); evas_object_data_set(obj, "Edje_External_Type", type);
ERR("Evas object: %p, external type: %p, data_get: %p", obj, type, evas_object_data_get(obj, "Edje_External_Type"));
return obj; return obj;
} }