Fix: missing variable

This commit is contained in:
James Cole 2023-06-10 21:41:45 +02:00
parent 0f8f95de9a
commit 44df77f45a
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80

View File

@ -90,7 +90,7 @@ class ProfileController extends Controller
);
$authGuard = config('firefly.authentication_guard');
$this->internalAuth = 'web' === $authGuard;
Log::debug(sprintf('ProfileController::__construct(). Login provider is "%s", authentication guard is "%s"', $loginProvider, $authGuard));
Log::debug(sprintf('ProfileController::__construct(). Authentication guard is "%s"', $authGuard));
$this->middleware(IsDemoUser::class)->except(['index']);
}