Do not log about loading auth module, it creates tricky issue when manually launching yunohost APIs to debug them

This commit is contained in:
Alexandre Aubin 2023-11-27 15:55:45 +01:00
parent d53dfc2997
commit 976aac0d05

View file

@ -464,7 +464,7 @@ class ActionsMap:
# Load and initialize the authenticator module
auth_module = f"{self.namespace}.authenticators.{auth_method}"
logger.debug(f"Loading auth module {auth_module}")
#logger.debug(f"Loading auth module {auth_module}")
try:
mod = import_module(auth_module)
except ImportError as e: