This line is very invasive to logging that the application (or other imported modules / libraries) might want to do: https://github.com/irods/python-irodsclient/blob/5ae9590656b78460b9726ec15cce3ad5f6a243db/irods/__init__.py#L32 `basicConfig` is meant to be called only once within an application, and it probably shouldn't be here. For one thing, it means you cannot do this and see logging output: ``` import logging import irods logging.basicConfig(level = logging.DEBUG) logging.debug("hello!") ```