Clean up and debug messages

This commit is contained in:
Shahram Najm 2016-06-21 14:36:35 +01:00
parent caaadd923a
commit d7cc879994
2 changed files with 4 additions and 1 deletions

View File

@ -29,7 +29,7 @@ for directory in dirs:
continue
fname = full[full.find("/%s/" % (dname,)):]
print("MEMFS add", fname)
#print("MEMFS add", fname)
name = re.sub(r'\W', '_', fname)
assert name not in FILES

View File

@ -59,6 +59,9 @@ int main( int argc,char* argv[])
printf("\n");
#if GRIB_PTHREADS
grib_context_log(grib_context_get_default(), GRIB_LOG_DEBUG, "PTHREADS enabled");
#endif
#ifdef HAVE_MEMFS
grib_context_log(grib_context_get_default(), GRIB_LOG_DEBUG, "MEMFS enabled");
#endif
if ((path=getenv("ECCODES_DEFINITION_PATH")) != NULL) {
printf("Definition files path from environment variable");