Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
if ($referer = $request->headers->get('referer')) {$message .= sprintf(' (from "%s")', $referer);}throw new NotFoundHttpException($message, $e);} catch (MethodNotAllowedException $e) {$message = sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);}
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 117)
$this->called = true;$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);if ($e->isStarted()) {$e->stop();}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 128)
{$this->requestStack->push($request);// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true){$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
Debug::enable();}$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Symfony\Component\Routing\Exception\ ResourceNotFoundException
if ($allowSchemes) {goto redirect_scheme;}}throw new ResourceNotFoundException(sprintf('No routes found for "%s".', $pathinfo));}private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array{$allow = $allowSchemes = [];
in
vendor/symfony/routing/Router.php
->
match
(line 243)
/*** {@inheritdoc}*/public function match(string $pathinfo){return $this->getMatcher()->match($pathinfo);}/*** {@inheritdoc}*/
return $this->router->getRouteCollection();}public function match(string $pathinfo): array{return $this->router->match($pathinfo);}/*** @return array<string>*/
in
vendor/strictify/goodies-bundle/src/Goodies/FiltersPassThru/RouterDecorator.php
->
match
(line 59)
return $this->router->generate($name, $parameters, $referenceType);}public function match(string $pathinfo): array{return $this->router->match($pathinfo);}private function doProcess(array $parameters, Request $request): array{foreach ($this->passQueryData as $passQueryDatum) {
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
match
(line 113)
try {// matching a request is more powerful than matching a URL path + context, so try that firstif ($this->matcher instanceof RequestMatcherInterface) {$parameters = $this->matcher->matchRequest($request);} else {$parameters = $this->matcher->match($request->getPathInfo());}if (null !== $this->logger) {$this->logger->info('Matched route "{route}".', ['route' => $parameters['_route'] ?? 'n/a',
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 117)
$this->called = true;$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);$e = $this->stopwatch->start($this->name, 'event_listener');($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);if ($e->isStarted()) {$e->stop();}
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
__invoke
(line 230)
foreach ($listeners as $listener) {if ($stoppable && $event->isPropagationStopped()) {break;}$listener($event, $eventName, $this);}}/*** Sorts the internal list of listeners for the given event by priority.
in
vendor/symfony/event-dispatcher/EventDispatcher.php
->
callListeners
(line 59)
} else {$listeners = $this->getListeners($eventName);}if ($listeners) {$this->callListeners($listeners, $eventName, $event);}return $event;}
in
vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
->
dispatch
(line 154)
try {$this->beforeDispatch($eventName, $event);try {$e = $this->stopwatch->start($eventName, 'section');try {$this->dispatcher->dispatch($event, $eventName);} finally {if ($e->isStarted()) {$e->stop();}}
in
vendor/symfony/http-kernel/HttpKernel.php
->
dispatch
(line 128)
{$this->requestStack->push($request);// request$event = new RequestEvent($this, $request, $type);$this->dispatcher->dispatch($event, KernelEvents::REQUEST);if ($event->hasResponse()) {return $this->filterResponse($event->getResponse(), $request, $type);}
in
vendor/symfony/http-kernel/HttpKernel.php
->
handleRaw
(line 74)
public function handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true){$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());try {return $this->handleRaw($request, $type);} catch (\Exception $e) {if ($e instanceof RequestExceptionInterface) {$e = new BadRequestHttpException($e->getMessage(), $e);}if (false === $catch) {
in
vendor/symfony/http-kernel/Kernel.php
->
handle
(line 202)
$this->boot();++$this->requestStackSize;$this->resetServices = true;try {return $this->getHttpKernel()->handle($request, $type, $catch);} finally {--$this->requestStackSize;}}
Debug::enable();}$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);$request = Request::createFromGlobals();$response = $kernel->handle($request);$response->send();$kernel->terminate($request, $response);
Logs
| Level | Channel | Message |
|---|---|---|
| DEBUG 08:14:13 | 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_eco AS tos_eco_19, c0_.tos_french AS tos_french_20, c0_.tos_eco_french AS tos_eco_french_21, c0_.smtp AS smtp_22, c0_.email_from AS email_from_23, c0_.email_from_name AS email_from_name_24, c0_.business_email AS business_email_25, c0_.scalar_config AS scalar_config_26, c0_.commercial_settings AS commercial_settings_27, c0_.subscription_id AS subscription_id_28, c0_.owner_id AS owner_id_29, c0_.default_tax_id AS default_tax_id_30, c0_.favorite_status_id AS favorite_status_id_31, c0_.favorite_season_id AS favorite_season_id_32, c0_.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_33, c0_.parent_company_id AS parent_company_id_34, c0_.snow_overage_charge_category_id AS snow_overage_charge_category_id_35, c0_.twili_config_id AS twili_config_id_36, c0_.file_collection_id AS file_collection_id_37 FROM company c0_ WHERE c0_.slug = ? LIMIT 1 [
"ksr"
]
|
| DEBUG 08:14:13 | 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_eco AS tos_eco_20, t0.tos_french AS tos_french_21, t0.tos_eco_french AS tos_eco_french_22, t0.smtp AS smtp_23, t0.email_from AS email_from_24, t0.email_from_name AS email_from_name_25, t0.business_email AS business_email_26, t0.scalar_config AS scalar_config_27, t0.commercial_settings AS commercial_settings_28, t0.subscription_id AS subscription_id_29, t0.owner_id AS owner_id_30, t0.default_tax_id AS default_tax_id_31, t0.favorite_status_id AS favorite_status_id_32, t0.favorite_season_id AS favorite_season_id_33, t0.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_34, t0.parent_company_id AS parent_company_id_35, t36.slug AS slug_37, t36.dispatch_priority AS dispatch_priority_38, t36.payment_control AS payment_control_39, t36.marker_installation_payment_control AS marker_installation_payment_control_40, t36.aggregate_values AS aggregate_values_41, t36.email_timing_setup AS email_timing_setup_42, t36.customer_renewal_configuration AS customer_renewal_configuration_43, t36.payment_config AS payment_config_44, t36.payment_service AS payment_service_45, t36.snow_overage_limit_reached AS snow_overage_limit_reached_46, t36.id AS id_47, t36.import_id AS import_id_48, t36.name AS name_49, t36.phone AS phone_50, t36.fax AS fax_51, t36.address AS address_52, t36.url AS url_53, t36.tax_number AS tax_number_54, t36.tos AS tos_55, t36.tos_eco AS tos_eco_56, t36.tos_french AS tos_french_57, t36.tos_eco_french AS tos_eco_french_58, t36.smtp AS smtp_59, t36.email_from AS email_from_60, t36.email_from_name AS email_from_name_61, t36.business_email AS business_email_62, t36.scalar_config AS scalar_config_63, t36.commercial_settings AS commercial_settings_64, t36.subscription_id AS subscription_id_65, t36.owner_id AS owner_id_66, t36.default_tax_id AS default_tax_id_67, t36.favorite_status_id AS favorite_status_id_68, t36.favorite_season_id AS favorite_season_id_69, t36.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_70, t36.parent_company_id AS parent_company_id_71, t36.snow_overage_charge_category_id AS snow_overage_charge_category_id_72, t36.twili_config_id AS twili_config_id_73, t36.file_collection_id AS file_collection_id_74, t0.snow_overage_charge_category_id AS snow_overage_charge_category_id_75, t0.twili_config_id AS twili_config_id_76, t77.sid AS sid_78, t77.token AS token_79, t77.phone_number AS phone_number_80, t77.send_batches AS send_batches_81, t77.send_for_completed_address AS send_for_completed_address_82, t77.send_for_obstructed_address AS send_for_obstructed_address_83, t77.batches_text AS batches_text_84, t77.completed_address_text AS completed_address_text_85, t77.obstructed_address_text AS obstructed_address_text_86, t77.id AS id_87, t0.file_collection_id AS file_collection_id_88 FROM company t0 LEFT JOIN company t36 ON t0.parent_company_id = t36.id LEFT JOIN twilio_config t77 ON t0.twili_config_id = t77.id WHERE t0.id IN (?) [
[
"fec5fd77-f624-47f9-baa4-14eaa335ab87"
]
]
|
| DEBUG 08:14:13 | 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 08:14:13 | 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_eco AS tos_eco_20, t0.tos_french AS tos_french_21, t0.tos_eco_french AS tos_eco_french_22, t0.smtp AS smtp_23, t0.email_from AS email_from_24, t0.email_from_name AS email_from_name_25, t0.business_email AS business_email_26, t0.scalar_config AS scalar_config_27, t0.commercial_settings AS commercial_settings_28, t0.subscription_id AS subscription_id_29, t0.owner_id AS owner_id_30, t0.default_tax_id AS default_tax_id_31, t0.favorite_status_id AS favorite_status_id_32, t0.favorite_season_id AS favorite_season_id_33, t0.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_34, t0.parent_company_id AS parent_company_id_35, t36.slug AS slug_37, t36.dispatch_priority AS dispatch_priority_38, t36.payment_control AS payment_control_39, t36.marker_installation_payment_control AS marker_installation_payment_control_40, t36.aggregate_values AS aggregate_values_41, t36.email_timing_setup AS email_timing_setup_42, t36.customer_renewal_configuration AS customer_renewal_configuration_43, t36.payment_config AS payment_config_44, t36.payment_service AS payment_service_45, t36.snow_overage_limit_reached AS snow_overage_limit_reached_46, t36.id AS id_47, t36.import_id AS import_id_48, t36.name AS name_49, t36.phone AS phone_50, t36.fax AS fax_51, t36.address AS address_52, t36.url AS url_53, t36.tax_number AS tax_number_54, t36.tos AS tos_55, t36.tos_eco AS tos_eco_56, t36.tos_french AS tos_french_57, t36.tos_eco_french AS tos_eco_french_58, t36.smtp AS smtp_59, t36.email_from AS email_from_60, t36.email_from_name AS email_from_name_61, t36.business_email AS business_email_62, t36.scalar_config AS scalar_config_63, t36.commercial_settings AS commercial_settings_64, t36.subscription_id AS subscription_id_65, t36.owner_id AS owner_id_66, t36.default_tax_id AS default_tax_id_67, t36.favorite_status_id AS favorite_status_id_68, t36.favorite_season_id AS favorite_season_id_69, t36.favorite_obstruction_reason_id AS favorite_obstruction_reason_id_70, t36.parent_company_id AS parent_company_id_71, t36.snow_overage_charge_category_id AS snow_overage_charge_category_id_72, t36.twili_config_id AS twili_config_id_73, t36.file_collection_id AS file_collection_id_74, t0.snow_overage_charge_category_id AS snow_overage_charge_category_id_75, t0.twili_config_id AS twili_config_id_76, t77.sid AS sid_78, t77.token AS token_79, t77.phone_number AS phone_number_80, t77.send_batches AS send_batches_81, t77.send_for_completed_address AS send_for_completed_address_82, t77.send_for_obstructed_address AS send_for_obstructed_address_83, t77.batches_text AS batches_text_84, t77.completed_address_text AS completed_address_text_85, t77.obstructed_address_text AS obstructed_address_text_86, t77.id AS id_87, t0.file_collection_id AS file_collection_id_88 FROM company t0 LEFT JOIN company t36 ON t0.parent_company_id = t36.id LEFT JOIN twilio_config t77 ON t0.twili_config_id = t77.id WHERE t0.parent_company_id = ? [
"8438b66a-48ec-423d-9eeb-dde42bb256af"
]
|
| INFO 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. {
"exception": {}
}
|
| INFO 08:14:13 | 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 08:14:13 | request |
Matched route "_profiler". {
"route": "_profiler",
"route_parameters": {
"_route": "_profiler",
"_controller": "web_profiler.controller.profiler::panelAction",
"token": "132792"
},
"request_uri": "https://ksr.wfstaging.ca/_profiler/132792?panel=exception&sub=ksr",
"method": "GET"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
|
| INFO 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| INFO 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.response" to listener "App\EventSubscriber\FollowAjaxDebug::__invoke". {
"event": "kernel.response",
"listener": "App\\EventSubscriber\\FollowAjaxDebug::__invoke"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "App\EventSubscriber\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse". {
"event": "kernel.response",
"listener": "App\\EventSubscriber\\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Strictify\Admin\Listener\TurboFormsListener::__invoke". {
"event": "kernel.response",
"listener": "Strictify\\Admin\\Listener\\TurboFormsListener::__invoke"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". {
"event": "kernel.finish_request",
"listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.response" to listener "App\EventSubscriber\FollowAjaxDebug::__invoke". {
"event": "kernel.response",
"listener": "App\\EventSubscriber\\FollowAjaxDebug::__invoke"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "App\EventSubscriber\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse". {
"event": "kernel.response",
"listener": "App\\EventSubscriber\\AjaxRedirectResponseSubscriber::onAjaxRedirectResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Strictify\Admin\Listener\TurboFormsListener::__invoke". {
"event": "kernel.response",
"listener": "Strictify\\Admin\\Listener\\TurboFormsListener::__invoke"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
"event": "kernel.response",
"listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". {
"event": "kernel.response",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets". {
"event": "kernel.finish_request",
"listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\OnTestSubdomain::onTestSubDomain". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\OnTestSubdomain::onTestSubDomain"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\AdminCompanyAwareFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\AdminCompanyAwareFilterEnabler::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\EventSubscriber\JsonRequestReplacer::__invoke". {
"event": "kernel.request",
"listener": "App\\EventSubscriber\\JsonRequestReplacer::__invoke"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
"event": "kernel.request",
"listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.request" to listener "App\Doctrine\Filter\SoftDeletableFilterEnabler::onKernelRequest". {
"event": "kernel.request",
"listener": "App\\Doctrine\\Filter\\SoftDeletableFilterEnabler::onKernelRequest"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
"event": "kernel.controller",
"listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". {
"event": "kernel.controller",
"listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
|
| DEBUG 08:14:13 | event |
Notified event "kernel.controller_arguments" to listener "App\EventSubscriber\Exception\ExceptionListener::onControllerArguments". {
"event": "kernel.controller_arguments",
"listener": "App\\EventSubscriber\\Exception\\ExceptionListener::onControllerArguments"
}
|
| DEBUG 08:14:13 | 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 08:14:13 | 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)
|