From 33c11b30f512ed652fb869282cc61a890c9c084b Mon Sep 17 00:00:00 2001 From: Fabian Zills <46721498+PythonFZ@users.noreply.github.com> Date: Fri, 28 Jan 2022 14:14:34 +0100 Subject: [PATCH] fix #482 (#484) --- mdsuite/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdsuite/__init__.py b/mdsuite/__init__.py index 58377d35..5a3e534b 100644 --- a/mdsuite/__init__.py +++ b/mdsuite/__init__.py @@ -37,7 +37,7 @@ __version__ = "0.1.0" logger = logging.getLogger(__name__) -logger.setLevel(logging.INFO) +logger.setLevel(logging.DEBUG) # Formatter for advanced logging formatter = logging.Formatter("%(asctime)s - %(levelname)s: %(message)s")