From be261a1b3ff593a46902330b65db4420bf1215b5 Mon Sep 17 00:00:00 2001 From: pablohashescobar Date: Tue, 17 Feb 2026 13:36:22 +0530 Subject: [PATCH] chore: update log --- apps/api/plane/authentication/adapter/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/plane/authentication/adapter/base.py b/apps/api/plane/authentication/adapter/base.py index 9c256ee2ac..b80dfa5002 100644 --- a/apps/api/plane/authentication/adapter/base.py +++ b/apps/api/plane/authentication/adapter/base.py @@ -109,7 +109,7 @@ class Adapter: # Check if sign up is disabled and invite is present or not if ENABLE_SIGNUP == "0" and not WorkspaceMemberInvite.objects.filter(email=email).exists(): - self.logger.warning(f"Sign up is disabled and invite is not present: {email}") + self.logger.warning("Sign up is disabled and invite is not present") # Raise exception raise AuthenticationException( error_code=AUTHENTICATION_ERROR_CODES["SIGNUP_DISABLED"],