From 52731941184392098159aa74298359df41543b3c Mon Sep 17 00:00:00 2001 From: Michele-Alberti <62114934+Michele-Alberti@users.noreply.github.com> Date: Sat, 4 Jan 2025 01:50:53 +0100 Subject: [PATCH] style: fix typo in debug log --- dlunch/__init__.py | 2 +- dlunch/models.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlunch/__init__.py b/dlunch/__init__.py index 7418855..5e67cb4 100755 --- a/dlunch/__init__.py +++ b/dlunch/__init__.py @@ -90,7 +90,7 @@ def create_app(config: DictConfig) -> pn.Template: # graphic element that require the Person class has to be instantiated # by a dedicated function # Create person instance, widget and column - log.debug("instantiate person class and graphic graphic interface") + log.debug("instantiate person class and graphic interface") person = gui.Person(config, name="User") gi = gui.GraphicInterface( config=config, diff --git a/dlunch/models.py b/dlunch/models.py index be669f8..d32258a 100755 --- a/dlunch/models.py +++ b/dlunch/models.py @@ -1012,7 +1012,7 @@ def _create_database_with_retries(config: DictConfig) -> None: # If requested add users for basic auth (admin and guest) if add_basic_auth_users: - log.debug("add basic auth standard users") + log.debug("add basic auth standard users (if missing)") # If no user exist create the default admin session = create_session(config)