Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4740181f authored by Fahim Salam Chowdhury's avatar Fahim Salam Chowdhury 👽
Browse files

fix: wrong logException format at passwordUpdateListener class

parent 57586d76
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -5,6 +5,7 @@ declare(strict_types=1);
namespace OCA\EcloudAccounts\Listeners;

use Exception;
use OCA\EcloudAccounts\AppInfo\Application;
use OCA\EcloudAccounts\Service\SSOService;
use OCP\EventDispatcher\Event;
use OCP\EventDispatcher\IEventListener;
@@ -33,7 +34,7 @@ class PasswordUpdatedListener implements IEventListener {
		try {
			$this->ssoService->logout($username);
		} catch (Exception $e) {
			$this->logger->logException('Failed to logout from ssoService for user: ' . $username, ['exception' => $e]);
			$this->logger->logException($e, ['app' => Application::APP_ID]);
		}
	}
}