]> Raphaël G. Git Repositories - userbundle/commitdiff
Adds to emergency log message the registrant IP 0.4.0
authorRaphaël Gertz <git@rapsys.eu>
Wed, 20 Mar 2024 15:55:32 +0000 (16:55 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Wed, 20 Mar 2024 15:55:32 +0000 (16:55 +0100)
Controller/UserController.php

index 8f3e4f41ad6015b35a0b2cb784d2f37dacdaaa81..5d7a85b264d30ca5a03dfaaa3e8169846ac27896 100644 (file)
@@ -553,7 +553,7 @@ class UserController extends AbstractController {
                        //Log new user infos
                        $this->logger->emergency(
                                $this->translator->trans(
-                                       'register: mail=%mail% locale=%locale% confirm=%confirm%',
+                                       'register: mail=%mail% locale=%locale% confirm=%confirm% ip=%ip%',
                                        [
                                                '%mail%' => $postMail = $_POST['register']['mail'],
                                                '%locale%' => $request->getLocale(),
@@ -565,7 +565,8 @@ class UserController extends AbstractController {
                                                                'hash' => $this->slugger->hash($postSmail)
                                                        ]+$this->config['route']['confirm']['context'],
                                                        UrlGeneratorInterface::ABSOLUTE_URL
-                                               )
+                                               ),
+                                               '%ip%' => $request->getClientIp()
                                        ]
                                )
                        );