diff --git a/batdetect2/__init__.py b/batdetect2/__init__.py index 52e9a85..3946e17 100644 --- a/batdetect2/__init__.py +++ b/batdetect2/__init__.py @@ -1 +1,6 @@ -__version__ = '1.0.8' +import logging + +numba_logger = logging.getLogger("numba") +numba_logger.setLevel(logging.WARNING) + +__version__ = "1.0.8"