Think about logging in rdflib · Issue #413 · RDFLib/rdflib (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Description
Currently logging in rdflib is a bit random:
rdflib/__init__.py:_LOGGER = logging.getLogger("rdflib")
rdflib/extras/infixowl.py: logger = logging.getLogger(__name__)
rdflib/graph.py:_logger = logging.getLogger(__name__)
rdflib/namespace.py:_logger = logging.getLogger(__name__)
rdflib/plugins/sleepycat.py:_logger = logging.getLogger(__name__)
rdflib/term.py:_LOGGER = logging.getLogger(__name__)
We should:
- Make a list of loggers we should use.
- DOCUMENT this list :)
- Configure logging to be output to stderr in commandline tools, rdfpipe and the like.