Debugging messages

This commit is contained in:
Shahram Najm 2021-10-06 11:29:57 +01:00
parent bddded25b3
commit f4af7f5276
4 changed files with 4 additions and 4 deletions

View File

@ -240,7 +240,7 @@ static grib_trie* load_bufr_elements_table(grib_accessor* a, int* err)
goto the_end;
}
else {
grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename);
grib_context_log(c, GRIB_LOG_DEBUG, "bufr_elements_table: found def file %s", filename);
}
dictionary = (grib_trie*)grib_trie_get(c->lists, dictName);

View File

@ -210,7 +210,7 @@ static grib_trie* load_dictionary(grib_context* c, grib_accessor* a, int* err)
return NULL;
}
else {
grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename);
grib_context_log(c, GRIB_LOG_DEBUG, "dictionary: found def file %s", filename);
}
dictionary = (grib_trie*)grib_trie_get(c->lists, dictName);
if (dictionary) {

View File

@ -111,7 +111,7 @@ static grib_trie* load_dictionary(grib_context* c, grib_expression* e, int* err)
return NULL;
}
else {
grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename);
grib_context_log(c, GRIB_LOG_DEBUG, "is_in_dict: found def file %s", filename);
}
dictionary = (grib_trie*)grib_trie_get(c->lists, filename);
if (dictionary) {

View File

@ -110,7 +110,7 @@ static grib_trie* load_list(grib_context* c, grib_expression* e, int* err)
return NULL;
}
else {
grib_context_log(c, GRIB_LOG_DEBUG, "found def file %s", filename);
grib_context_log(c, GRIB_LOG_DEBUG, "is_in_list: found def file %s", filename);
}
list = (grib_trie*)grib_trie_get(c->lists, filename);
if (list) {