mirror of https://github.com/ecmwf/eccodes.git
Comment out extraneous debug output
This commit is contained in:
parent
d50e3520ea
commit
84c8ef9d1d
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue