We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bfa3f1 commit 50cd0e0Copy full SHA for 50cd0e0
1 file changed
tests/test_libraries.py
@@ -2347,6 +2347,18 @@ def _get_library_path():
2347
import os
2348
import pathlib
2349
2350
+ ####
2351
+ import logging
2352
+ logging.basicConfig(level=logging.DEBUG)
2353
+
2354
+ import os
2355
+ os.environ['ECCODES_PYTHON_TRACE_LIB_SEARCH'] = '1'
2356
2357
+ import findlibs
2358
+ findlibs.logger.setLevel(logging.DEBUG)
2359
+ findlibs.logger.addHandler(logging.StreamHandler())
2360
2361
2362
# With eccodes 2.37.0, eccodes needs to be imported before gribapi to avoid circular imports.
2363
import eccodes
2364
0 commit comments