https://ksr.wfstaging.ca/robots.txt

Exceptions

No route found for "GET https://ksr.wfstaging.ca/robots.txt"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.             if ($referer $request->headers->get('referer')) {
  2.                 $message .= sprintf(' (from "%s")'$referer);
  3.             }
  4.             throw new NotFoundHttpException($message$e);
  5.         } catch (MethodNotAllowedException $e) {
  6.             $message sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)'$request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', '$e->getAllowedMethods()));
  7.             throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message$e);
  8.         }
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     {
  2.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 21)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/robots.txt/".

  1.             if ($allowSchemes) {
  2.                 goto redirect_scheme;
  3.             }
  4.         }
  5.         throw new ResourceNotFoundException(sprintf('No routes found for "%s".'$pathinfo));
  6.     }
  7.     private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8.     {
  9.         $allow $allowSchemes = [];
  1.     /**
  2.      * {@inheritdoc}
  3.      */
  4.     public function match(string $pathinfo)
  5.     {
  6.         return $this->getMatcher()->match($pathinfo);
  7.     }
  8.     /**
  9.      * {@inheritdoc}
  10.      */
Router->match('/robots.txt') in src/Decorator/RouterDecorator.php (line 70)
  1.         return $this->router->getRouteCollection();
  2.     }
  3.     public function match(string $pathinfo): array
  4.     {
  5.         return $this->router->match($pathinfo);
  6.     }
  7.     /**
  8.      * @return array<string>
  9.      */
  1.         return $this->router->generate($name$parameters$referenceType);
  2.     }
  3.     public function match(string $pathinfo): array
  4.     {
  5.         return $this->router->match($pathinfo);
  6.     }
  7.     private function doProcess(array $parametersRequest $request): array
  8.     {
  9.         foreach ($this->passQueryData as $passQueryDatum) {
  1.         try {
  2.             // matching a request is more powerful than matching a URL path + context, so try that first
  3.             if ($this->matcher instanceof RequestMatcherInterface) {
  4.                 $parameters $this->matcher->matchRequest($request);
  5.             } else {
  6.                 $parameters $this->matcher->match($request->getPathInfo());
  7.             }
  8.             if (null !== $this->logger) {
  9.                 $this->logger->info('Matched route "{route}".', [
  10.                     'route' => $parameters['_route'] ?? 'n/a',
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.     {
  2.         $this->requestStack->push($request);
  3.         // request
  4.         $event = new RequestEvent($this$request$type);
  5.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  6.         if ($event->hasResponse()) {
  7.             return $this->filterResponse($event->getResponse(), $request$type);
  8.         }
  1.     public function handle(Request $requestint $type HttpKernelInterface::MAIN_REQUESTbool $catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in public/index.php (line 21)
  1.     Debug::enable();
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
DEBUG 17:47:46 doctrine SELECT c0_.slug AS slug_0, c0_.dispatch_priority AS dispatch_priority_1, c0_.payment_control AS payment_control_2, c0_.marker_installation_payment_control AS marker_installation_payment_control_3, c0_.aggregate_values AS aggregate_values_4, c0_.email_timing_setup AS email_timing_setup_5, c0_.customer_renewal_configuration AS customer_renewal_configuration_6, c0_.payment_config AS payment_config_7, c0_.payment_service AS payment_service_8, c0_.snow_overage_limit_reached AS snow_overage_limit_reached_9, c0_.id AS id_10, c0_.import_id AS import_id_11, c0_.name AS name_12, c0_.phone AS phone_13, c0_.fax AS fax_14, c0_.address AS address_15, c0_.url AS url_16, c0_.tax_number AS tax_number_17, c0_.tos AS tos_18, c0_.tos_french AS tos_french_19, c0_.smtp AS smtp_20, c0_.email_from AS email_from_21, c0_.email_from_name AS email_from_name_22, c0_.business_email AS business_email_23, c0_.scalar_config AS scalar_config_24, c0_.commercial_settings AS commercial_settings_25, c0_.subscription_id AS subscription_id_26, c0_.owner_id AS owner_id_27, c0_.default_tax_id AS default_tax_id_28, c0_.favorite_status_id AS favorite_status_id_29, c0_.favorite_season_id AS favorite_season_id_30, c0_.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_31, c0_.parent_company_id AS parent_company_id_32, c0_.snow_overage_charge_category_id AS snow_overage_charge_category_id_33, c0_.twili_config_id AS twili_config_id_34, c0_.file_collection_id AS file_collection_id_35 FROM company c0_ WHERE c0_.slug = ? LIMIT 1
[
    "ksr"
]
DEBUG 17:47:46 doctrine SELECT t0.slug AS slug_1, t0.dispatch_priority AS dispatch_priority_2, t0.payment_control AS payment_control_3, t0.marker_installation_payment_control AS marker_installation_payment_control_4, t0.aggregate_values AS aggregate_values_5, t0.email_timing_setup AS email_timing_setup_6, t0.customer_renewal_configuration AS customer_renewal_configuration_7, t0.payment_config AS payment_config_8, t0.payment_service AS payment_service_9, t0.snow_overage_limit_reached AS snow_overage_limit_reached_10, t0.id AS id_11, t0.import_id AS import_id_12, t0.name AS name_13, t0.phone AS phone_14, t0.fax AS fax_15, t0.address AS address_16, t0.url AS url_17, t0.tax_number AS tax_number_18, t0.tos AS tos_19, t0.tos_french AS tos_french_20, t0.smtp AS smtp_21, t0.email_from AS email_from_22, t0.email_from_name AS email_from_name_23, t0.business_email AS business_email_24, t0.scalar_config AS scalar_config_25, t0.commercial_settings AS commercial_settings_26, t0.subscription_id AS subscription_id_27, t0.owner_id AS owner_id_28, t0.default_tax_id AS default_tax_id_29, t0.favorite_status_id AS favorite_status_id_30, t0.favorite_season_id AS favorite_season_id_31, t0.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_32, t0.parent_company_id AS parent_company_id_33, t34.slug AS slug_35, t34.dispatch_priority AS dispatch_priority_36, t34.payment_control AS payment_control_37, t34.marker_installation_payment_control AS marker_installation_payment_control_38, t34.aggregate_values AS aggregate_values_39, t34.email_timing_setup AS email_timing_setup_40, t34.customer_renewal_configuration AS customer_renewal_configuration_41, t34.payment_config AS payment_config_42, t34.payment_service AS payment_service_43, t34.snow_overage_limit_reached AS snow_overage_limit_reached_44, t34.id AS id_45, t34.import_id AS import_id_46, t34.name AS name_47, t34.phone AS phone_48, t34.fax AS fax_49, t34.address AS address_50, t34.url AS url_51, t34.tax_number AS tax_number_52, t34.tos AS tos_53, t34.tos_french AS tos_french_54, t34.smtp AS smtp_55, t34.email_from AS email_from_56, t34.email_from_name AS email_from_name_57, t34.business_email AS business_email_58, t34.scalar_config AS scalar_config_59, t34.commercial_settings AS commercial_settings_60, t34.subscription_id AS subscription_id_61, t34.owner_id AS owner_id_62, t34.default_tax_id AS default_tax_id_63, t34.favorite_status_id AS favorite_status_id_64, t34.favorite_season_id AS favorite_season_id_65, t34.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_66, t34.parent_company_id AS parent_company_id_67, t34.snow_overage_charge_category_id AS snow_overage_charge_category_id_68, t34.twili_config_id AS twili_config_id_69, t34.file_collection_id AS file_collection_id_70, t0.snow_overage_charge_category_id AS snow_overage_charge_category_id_71, t0.twili_config_id AS twili_config_id_72, t73.sid AS sid_74, t73.token AS token_75, t73.phone_number AS phone_number_76, t73.send_batches AS send_batches_77, t73.send_for_completed_address AS send_for_completed_address_78, t73.send_for_obstructed_address AS send_for_obstructed_address_79, t73.batches_text AS batches_text_80, t73.completed_address_text AS completed_address_text_81, t73.obstructed_address_text AS obstructed_address_text_82, t73.id AS id_83, t0.file_collection_id AS file_collection_id_84 FROM company t0 LEFT JOIN company t34 ON t0.parent_company_id = t34.id LEFT JOIN twilio_config t73 ON t0.twili_config_id = t73.id WHERE t0.id IN (?)
[
    [
        "fec5fd77-f624-47f9-baa4-14eaa335ab87"
    ]
]
DEBUG 17:47:46 doctrine SELECT t0.sid AS sid_1, t0.token AS token_2, t0.phone_number AS phone_number_3, t0.send_batches AS send_batches_4, t0.send_for_completed_address AS send_for_completed_address_5, t0.send_for_obstructed_address AS send_for_obstructed_address_6, t0.batches_text AS batches_text_7, t0.completed_address_text AS completed_address_text_8, t0.obstructed_address_text AS obstructed_address_text_9, t0.id AS id_10 FROM twilio_config t0 WHERE t0.id IN (?)
[
    [
        "70f72994-58c1-4825-8e95-9cae9eaf5547"
    ]
]
DEBUG 17:47:46 doctrine SELECT t0.slug AS slug_1, t0.dispatch_priority AS dispatch_priority_2, t0.payment_control AS payment_control_3, t0.marker_installation_payment_control AS marker_installation_payment_control_4, t0.aggregate_values AS aggregate_values_5, t0.email_timing_setup AS email_timing_setup_6, t0.customer_renewal_configuration AS customer_renewal_configuration_7, t0.payment_config AS payment_config_8, t0.payment_service AS payment_service_9, t0.snow_overage_limit_reached AS snow_overage_limit_reached_10, t0.id AS id_11, t0.import_id AS import_id_12, t0.name AS name_13, t0.phone AS phone_14, t0.fax AS fax_15, t0.address AS address_16, t0.url AS url_17, t0.tax_number AS tax_number_18, t0.tos AS tos_19, t0.tos_french AS tos_french_20, t0.smtp AS smtp_21, t0.email_from AS email_from_22, t0.email_from_name AS email_from_name_23, t0.business_email AS business_email_24, t0.scalar_config AS scalar_config_25, t0.commercial_settings AS commercial_settings_26, t0.subscription_id AS subscription_id_27, t0.owner_id AS owner_id_28, t0.default_tax_id AS default_tax_id_29, t0.favorite_status_id AS favorite_status_id_30, t0.favorite_season_id AS favorite_season_id_31, t0.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_32, t0.parent_company_id AS parent_company_id_33, t34.slug AS slug_35, t34.dispatch_priority AS dispatch_priority_36, t34.payment_control AS payment_control_37, t34.marker_installation_payment_control AS marker_installation_payment_control_38, t34.aggregate_values AS aggregate_values_39, t34.email_timing_setup AS email_timing_setup_40, t34.customer_renewal_configuration AS customer_renewal_configuration_41, t34.payment_config AS payment_config_42, t34.payment_service AS payment_service_43, t34.snow_overage_limit_reached AS snow_overage_limit_reached_44, t34.id AS id_45, t34.import_id AS import_id_46, t34.name AS name_47, t34.phone AS phone_48, t34.fax AS fax_49, t34.address AS address_50, t34.url AS url_51, t34.tax_number AS tax_number_52, t34.tos AS tos_53, t34.tos_french AS tos_french_54, t34.smtp AS smtp_55, t34.email_from AS email_from_56, t34.email_from_name AS email_from_name_57, t34.business_email AS business_email_58, t34.scalar_config AS scalar_config_59, t34.commercial_settings AS commercial_settings_60, t34.subscription_id AS subscription_id_61, t34.owner_id AS owner_id_62, t34.default_tax_id AS default_tax_id_63, t34.favorite_status_id AS favorite_status_id_64, t34.favorite_season_id AS favorite_season_id_65, t34.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_66, t34.parent_company_id AS parent_company_id_67, t34.snow_overage_charge_category_id AS snow_overage_charge_category_id_68, t34.twili_config_id AS twili_config_id_69, t34.file_collection_id AS file_collection_id_70, t0.snow_overage_charge_category_id AS snow_overage_charge_category_id_71, t0.twili_config_id AS twili_config_id_72, t73.sid AS sid_74, t73.token AS token_75, t73.phone_number AS phone_number_76, t73.send_batches AS send_batches_77, t73.send_for_completed_address AS send_for_completed_address_78, t73.send_for_obstructed_address AS send_for_obstructed_address_79, t73.batches_text AS batches_text_80, t73.completed_address_text AS completed_address_text_81, t73.obstructed_address_text AS obstructed_address_text_82, t73.id AS id_83, t0.file_collection_id AS file_collection_id_84 FROM company t0 LEFT JOIN company t34 ON t0.parent_company_id = t34.id LEFT JOIN twilio_config t73 ON t0.twili_config_id = t73.id WHERE t0.parent_company_id = ?
[
    "8438b66a-48ec-423d-9eeb-dde42bb256af"
]
INFO 17:47:46 php User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getCacheDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "App\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:46 php User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::getLogDir()" might add "string" as a native return type declaration in the future. Do the same in implementation "App\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:46 php User Deprecated: Method "Symfony\Component\HttpKernel\KernelInterface::registerBundles()" might add "iterable" as a native return type declaration in the future. Do the same in implementation "App\Kernel" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:46 php User Deprecated: Method "Symfony\Component\HttpKernel\Bundle\Bundle::getContainerExtension()" might add "?ExtensionInterface" as a native return type declaration in the future. Do the same in child class "BabDev\PagerfantaBundle\BabDevPagerfantaBundle" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:46 php User Deprecated: The "Symfony\Bridge\Doctrine\Logger\DbalLogger" class implements "Doctrine\DBAL\Logging\SQLLogger" that is deprecated Use {@see \Doctrine\DBAL\Logging\Middleware} or implement {@see \Doctrine\DBAL\Driver\Middleware} instead.
{
    "exception": {}
}
INFO 17:47:46 php User Deprecated: Class "App\Entity\User\User" should implement method "Symfony\Component\Security\Core\User\UserInterface::getUserIdentifier(): string": returns the identifier for this user (e.g. its username or email address).
{
    "exception": {}
}
INFO 17:47:46 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 17:47:46 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.metadata_bag" service is deprecated, create your own "session.storage.factory" instead.
{
    "exception": {}
}
INFO 17:47:46 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "8406e4"
    },
    "request_uri": "https://ksr.wfstaging.ca/_profiler/8406e4?sub=ksr",
    "method": "GET"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Qandidate\Common\Symfony\HttpKernel\EventListener\JsonRequestTransformerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Qandidate\\Common\\Symfony\\HttpKernel\\EventListener\\JsonRequestTransformerListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 17:47:46 event Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
INFO 17:47:47 php User Deprecated: The "Strictify\Admin\Service\ViewFactory\Model\ViewFactoryInterface::one()" method is considered internal. It may change without further notice. You should not extend it from "App\ViewFactory\Season\SeasonViewFactory".
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Strictify\Admin\Service\ViewFactory\Model\ViewFactoryInterface::one()" might add "R" as a native return type declaration in the future. Do the same in implementation "App\ViewFactory\Season\SeasonViewFactory" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getRoles()" might add "array" as a native return type declaration in the future. Do the same in implementation "App\Entity\Customer\Customer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getPassword()" might add "?string" as a native return type declaration in the future. Do the same in implementation "App\Entity\Customer\Customer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\Security\Core\User\UserInterface::getUsername()" might add "string" as a native return type declaration in the future. Do the same in implementation "App\Entity\Customer\Customer" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Pagerfanta\Twig\Extension\PagerfantaExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Strictify\Admin\Twig\ContentClassesExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "Strictify\Admin\Twig\RenderExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Strictify\Admin\Twig\LayoutResolver" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFunctions()" might add "array" as a native return type declaration in the future. Do the same in implementation "Endroid\QrCodeBundle\Twig\QrCodeExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: The Liip\ImagineBundle\Templating\FilterExtension class is deprecated since version 2.7 and will be removed in 3.0; configure "liip_imagine.twig.mode" to "lazy" instead.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: The Liip\ImagineBundle\Templating\FilterTrait trait is deprecated since version 2.7 and will be removed in 3.0; use Twig instead.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Twig\Extension\ExtensionInterface::getFilters()" might add "array" as a native return type declaration in the future. Do the same in implementation "Liip\ImagineBundle\Templating\FilterExtension" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
INFO 17:47:47 php User Deprecated: Method "Symfony\Component\EventDispatcher\EventSubscriberInterface::getSubscribedEvents()" might add "array" as a native return type declaration in the future. Do the same in implementation "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener" now to avoid errors or add an explicit @return annotation to suppress this message.
{
    "exception": {}
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Qandidate\Common\Symfony\HttpKernel\EventListener\JsonRequestTransformerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Qandidate\\Common\\Symfony\\HttpKernel\\EventListener\\JsonRequestTransformerListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "App\EventSubscriber\FollowAjaxDebug::__invoke".
{
    "event": "kernel.response",
    "listener": "App\\EventSubscriber\\FollowAjaxDebug::__invoke"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "App\EventSubscriber\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse".
{
    "event": "kernel.response",
    "listener": "App\\EventSubscriber\\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Strictify\Admin\Listener\TurboFormsListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Strictify\\Admin\\Listener\\TurboFormsListener::__invoke"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Qandidate\Common\Symfony\HttpKernel\EventListener\JsonRequestTransformerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Qandidate\\Common\\Symfony\\HttpKernel\\EventListener\\JsonRequestTransformerListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 17:47:47 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}
INFO 17:47:47 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.factory.service" service is deprecated, use "session.storage.factory.native", "session.storage.factory.php_bridge" or "session.storage.factory.mock_file" instead.
{
    "exception": {}
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "App\EventSubscriber\FollowAjaxDebug::__invoke".
{
    "event": "kernel.response",
    "listener": "App\\EventSubscriber\\FollowAjaxDebug::__invoke"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "App\EventSubscriber\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse".
{
    "event": "kernel.response",
    "listener": "App\\EventSubscriber\\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Strictify\Admin\Listener\TurboFormsListener::__invoke".
{
    "event": "kernel.response",
    "listener": "Strictify\\Admin\\Listener\\TurboFormsListener::__invoke"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\Firewall\ContextListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\Firewall\\ContextListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Security\Http\RememberMe\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Security\\Http\\RememberMe\\ResponseListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelFinishRequest"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 17:47:47 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Qandidate\Common\Symfony\HttpKernel\EventListener\JsonRequestTransformerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Qandidate\\Common\\Symfony\\HttpKernel\\EventListener\\JsonRequestTransformerListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
DEBUG 17:47:48 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 17:47:48 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 17:47:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 17:47:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 17:47:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 17:47:48 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 17:47:48 event Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
DEBUG 17:47:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\SecurityListener::onKernelControllerArguments"
}
DEBUG 17:47:48 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\IsGrantedListener::onKernelControllerArguments"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://ksr.wfstaging.ca/robots.txt"

  at vendor/symfony/http-kernel/EventListener/RouterListener.php:135
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:128)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:21)                
[1/2] ResourceNotFoundException
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".

  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:74
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/robots.txt/')
     (vendor/symfony/routing/Router.php:243)
  at Symfony\Component\Routing\Router->match('/robots.txt')
     (src/Decorator/RouterDecorator.php:70)
  at App\Decorator\RouterDecorator->match('/robots.txt')
     (vendor/strictify/goodies-bundle/src/Goodies/FiltersPassThru/RouterDecorator.php:59)
  at Strictify\Goodies\Goodies\FiltersPassThru\RouterDecorator->match('/robots.txt')
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:113)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:128)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:74)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:202)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (public/index.php:21)