From c97a87b2a499870c57c229d6f3f5ad16645c6990 Mon Sep 17 00:00:00 2001 From: mbsantiago Date: Sun, 10 Nov 2024 22:37:45 +0000 Subject: [PATCH] Remove numba debug logging for easier debugging --- batdetect2/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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"