Skip to content

Set logging level#

You can access the logger as follows:

logging.getLogger("neptune")

For example, to suppress or silence all Neptune logs (except deprecation warnings):

logging.getLogger("neptune").setLevel(logging.CRITICAL)