From 992dd8f11cd429a169dfb28f0e3c7e8cfc18c704 Mon Sep 17 00:00:00 2001 From: Janis Date: Thu, 30 Oct 2025 10:46:19 +0100 Subject: [PATCH] feat(user-sessions): remove debug print statement from login_Post method --- knockoutwhistweb/app/controllers/UserController.scala | 1 - 1 file changed, 1 deletion(-) diff --git a/knockoutwhistweb/app/controllers/UserController.scala b/knockoutwhistweb/app/controllers/UserController.scala index 8b32c2e..ce31739 100644 --- a/knockoutwhistweb/app/controllers/UserController.scala +++ b/knockoutwhistweb/app/controllers/UserController.scala @@ -62,7 +62,6 @@ class UserController @Inject()(val controllerComponents: ControllerComponents, v def login_Post(): Action[AnyContent] = { Action { implicit request => val postData = request.body.asFormUrlEncoded - println(request.body.asText) if (postData.isDefined) { // Extract username and password from form data val username = postData.get.get("username").flatMap(_.headOption).getOrElse("")