From b997a122f1e41e70bf686a8ed72e6fce776c3dd0 Mon Sep 17 00:00:00 2001 From: mbsantiago Date: Mon, 11 Aug 2025 12:25:04 +0100 Subject: [PATCH] Enable batdetect2 in the cli --- src/batdetect2/cli/base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/batdetect2/cli/base.py b/src/batdetect2/cli/base.py index 6bc2c12..60ec376 100644 --- a/src/batdetect2/cli/base.py +++ b/src/batdetect2/cli/base.py @@ -1,6 +1,7 @@ """BatDetect2 command line interface.""" import click +from loguru import logger # from batdetect2.cli.ascii import BATDETECT_ASCII_ART @@ -21,4 +22,5 @@ BatDetect2 - Detection and Classification def cli(): """BatDetect2 - Bat Call Detection and Classification.""" click.echo(INFO_STR) + logger.enable("batdetect2") # click.echo(BATDETECT_ASCII_ART)