From 2a3a89a6ed21f256be1bc78c54359a60e24027c5 Mon Sep 17 00:00:00 2001 From: James Cole Date: Thu, 17 Dec 2020 06:31:32 +0100 Subject: [PATCH] Remove log --- app/Support/Authentication/RemoteUserGuard.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Support/Authentication/RemoteUserGuard.php b/app/Support/Authentication/RemoteUserGuard.php index 4d4867b813..42432e25ba 100644 --- a/app/Support/Authentication/RemoteUserGuard.php +++ b/app/Support/Authentication/RemoteUserGuard.php @@ -100,7 +100,6 @@ class RemoteUserGuard implements Guard public function check(): bool { $result = !is_null($this->user()); - Log::debug(sprintf('Now in check(). Will return %s', var_export($result, true))); return $result; }