Comment out extraneous debug output

This commit is contained in:
Shahram Najm 2016-08-05 15:01:35 +01:00
parent d50e3520ea
commit 84c8ef9d1d
2 changed files with 2 additions and 2 deletions

View File

@ -496,7 +496,7 @@ void grib_accessor_delete(grib_context *ct, grib_accessor* a)
while(c)
{
grib_accessor_class *s = c->super ? *(c->super) : NULL;
grib_context_log(ct,GRIB_LOG_DEBUG,"destroy %s ==> %s",c->name,a->name);
/*grib_context_log(ct,GRIB_LOG_DEBUG,"destroy %s ==> %s",c->name,a->name);*/
if(c->destroy) {
c->destroy(ct,a);
}

View File

@ -497,7 +497,7 @@ static void destroy(grib_context* ct, grib_accessor* a)
grib_context_free(ct,a->vvalue);
a->vvalue=NULL;
}
grib_context_log(ct,GRIB_LOG_DEBUG,"address=%p",a);
/*grib_context_log(ct,GRIB_LOG_DEBUG,"address=%p",a);*/
}
static grib_section* sub_section(grib_accessor* a)