mirror of https://github.com/ecmwf/eccodes.git
Debugging messages
This commit is contained in:
parent
bddded25b3
commit
f4af7f5276
|
@ -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);
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue