Skip to content

Set logging level#

You can access the logger as follows:

import logging

logging.getLogger("neptune")

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

import logging

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