diff --git a/src/libeagle/connection.py b/src/libeagle/connection.py index 33db605..220a578 100644 --- a/src/libeagle/connection.py +++ b/src/libeagle/connection.py @@ -32,10 +32,8 @@ def __init__( debug:bool Enable debug logging """ - self.logger = logging.getLogger() - - if debug: - self.logger.setLevel(logging.DEBUG) + self.logger = logging.getLogger("libeagle") + self.logger.setLevel(logging.DEBUG) url = f"http://{hostname}:{port}"