From e2330d9bfefb8f39db0c2c38a5c4f1f64493235b Mon Sep 17 00:00:00 2001 From: James Cole Date: Tue, 29 Dec 2020 08:33:25 +0100 Subject: [PATCH] Log warning in cron controller --- app/Support/Binder/CLIToken.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Support/Binder/CLIToken.php b/app/Support/Binder/CLIToken.php index 3dd97aa309..2302f94fde 100644 --- a/app/Support/Binder/CLIToken.php +++ b/app/Support/Binder/CLIToken.php @@ -57,6 +57,7 @@ class CLIToken implements BinderInterface return $value; } } + Log::error(sprintf('Recognized no users by access token "%s"', $value)); throw new NotFoundHttpException; } }