From f312f174cef0cd2ebef74a2835bd38c2219abec0 Mon Sep 17 00:00:00 2001 From: Cassowary Date: Wed, 27 Sep 2023 12:11:09 -0700 Subject: [PATCH] fix log messages --- lib/Hooks/UserHooks.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Hooks/UserHooks.php b/lib/Hooks/UserHooks.php index a3d4b62..44fd930 100644 --- a/lib/Hooks/UserHooks.php +++ b/lib/Hooks/UserHooks.php @@ -66,7 +66,7 @@ class UserHooks { return function (\OC\User\User $user, string $password) { $email = $user->getUID() . $this->config->getEmailAddressSuffix(); if($this->updateEmailPassword($email, $password)) { - $this->logger->warning("Updated glesys password for account: " . $email, $this->logContext); + $this->logger->warning("updated email password for account" . $email, $this->logContext); } else { $this->logger->error("Error updating mail password for account" . $email); }