Eo: Remove the EO_DEBUG env check. We have DBG for that.
authorTom Hacohen <tom@stosb.com>
Fri, 9 Sep 2016 10:38:07 +0000 (11:38 +0100)
committerTom Hacohen <tom@stosb.com>
Fri, 9 Sep 2016 10:38:07 +0000 (11:38 +0100)
src/lib/eo/eo.c

index 9b09835..a9a994f 100644 (file)
@@ -1341,18 +1341,6 @@ efl_class_new(const Efl_Class_Description *desc, const Efl_Class *parent_id, ...
      }
 
    klass->obj_size = extn_data_off;
-   static unsigned char _eo_debug = 0;
-
-   if (_eo_debug == 0)
-     {
-        if (getenv("EO_DEBUG")) _eo_debug = 2;
-        else _eo_debug = 1;
-     }
-   if (_eo_debug == 2)
-     {
-        fprintf(stderr, "Eo class '%s' will take %u bytes per object.\n",
-                desc->name, klass->obj_size);
-     }
 
      {
         Eo_Id new_id;