From 5b7da745b3128d078e75da22da0cd3fd8c151172 Mon Sep 17 00:00:00 2001 From: Akhil Date: Mon, 2 Sep 2024 18:53:22 +0530 Subject: [PATCH] Log message should be of type debug --- lib/Service/RecoveryEmailService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/RecoveryEmailService.php b/lib/Service/RecoveryEmailService.php index f9fe0ca..0fe1844 100644 --- a/lib/Service/RecoveryEmailService.php +++ b/lib/Service/RecoveryEmailService.php @@ -206,7 +206,7 @@ class RecoveryEmailService { $token = $this->createToken($user, $recoveryEmailAddress); $link = $this->urlGenerator->linkToRouteAbsolute($this->appName .'.email_recovery.verify_recovery_email', ['token' => $token,'userId' => $user->getUID()]); - $this->logger->error('EMAIL URL LINK: ' . $link); + $this->logger->debug('RECOVERY EMAIL VERIFICATION URL LINK: ' . $link); $displayName = $user->getDisplayName(); $emailTemplate = $this->mailer->createEMailTemplate('recovery-email.confirmation', [ -- GitLab