From 3ab162d8b88a23ad1d0ef5f72a3162bdd7f75ca8 Mon Sep 17 00:00:00 2001 From: blake Date: Sun, 16 Feb 2025 16:26:23 +0100 Subject: [PATCH] fix: removed print line with user/pass that was used in debugging. --- routes/user_auth/auth.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/routes/user_auth/auth.py b/routes/user_auth/auth.py index ed8017c..b1452f0 100644 --- a/routes/user_auth/auth.py +++ b/routes/user_auth/auth.py @@ -17,10 +17,6 @@ def signup(): @auth_bp.route('/login', methods=['POST']) def login(): data = request.get_json() - username = data.get('username') - password = data.get('password') - - print(f"Login attempt: username={username}, password={password}") try: user = user_service.verify_user(data['username'], data['password'])