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 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
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 139)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// 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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
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;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$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/Matcher/UrlMatcher.php
->
match
(line 106)
*/
public function matchRequest(Request $request)
{
$this->request = $request;
$ret = $this->match($request->getPathInfo());
$this->request = null;
return $ret;
}
in
vendor/symfony/routing/Router.php
->
matchRequest
(line 257)
if (!$matcher instanceof RequestMatcherInterface) {
// fallback to the default UrlMatcherInterface
return $matcher->match($request->getPathInfo());
}
return $matcher->matchRequest($request);
}
/**
* Gets the UrlMatcher or RequestMatcher instance associated with this Router.
*
in
vendor/symfony/http-kernel/EventListener/RouterListener.php
->
matchRequest
(line 111)
// add attributes based on the request (routing)
try {
// matching a request is more powerful than matching a URL path + context, so try that first
if ($this->matcher instanceof RequestMatcherInterface) {
$parameters = $this->matcher->matchRequest($request);
} else {
$parameters = $this->matcher->match($request->getPathInfo());
}
if (null !== $this->logger) {
in
vendor/symfony/event-dispatcher/Debug/WrappedListener.php
->
onKernelRequest
(line 118)
$this->priority = $dispatcher->getListenerPriority($eventName, $this->listener);
$e = $this->stopwatch->start($this->name, 'event_listener');
try {
($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
} finally {
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 139)
*/
private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
{
// 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 75)
{
$request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
$this->requestStack->push($request);
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;
}
}
Request::setTrustedHosts([$trustedHosts]);
}
$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 |
---|---|---|
INFO 07:57:00 | doctrine |
Connecting with parameters {params} { "params": { "url": "<redacted>", "charset": "utf8mb4", "driver": "pdo_mysql", "host": "mysqlb2c-qa.grupoaviatur.com", "port": 3306, "user": "qa_user", "password": "<redacted>", "driverOptions": [], "defaultTableOptions": { "collate": "utf8mb4_unicode_ci" }, "dbname": "symfony_qa" } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "aviatur_service_token" }, "types": { "1": 2 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "aviatur_ath" }, "types": { "1": 2 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "aval_public_key_auth" }, "types": { "1": 2 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "aval_url_mocks" }, "types": { "1": 2 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.value AS value_3, t0.description AS description_4, t0.agency_id AS agency_id_5 FROM parameter t0 WHERE t0.name = ? LIMIT 1", "params": { "1": "aval_public_key_auth" }, "types": { "1": 2 } } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.4: Not setting the 5th argument of "Symfony\Component\Security\Core\Authorization\AuthorizationChecker::__construct" to "false" is deprecated. { "exception": {} } |
INFO 07:57:05 | 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": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead. { "exception": {} } |
INFO 07:57:05 | 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 07:57:05 | php |
User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since sonata-project/intl-bundle 2.13: The "sonata.intl.timezone_detector.locale" service is deprecated since sonata-project/intl-bundle 2.13 and will be removed in 3.0. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since sonata-project/intl-bundle 2.13: The "sonata.intl.locale_detector.request_stack" service is deprecated since sonata-project/intl-bundle 2.13 and will be removed in 3.0. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\BasePasswordEncoder" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\CheckPasswordLengthTrait" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\PasswordEncoderInterface" class is deprecated, use "Symfony\Component\PasswordHasher\PasswordHasherInterface" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_Transport_EsmtpHandler::getMailParams()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_AuthHandler" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_Transport_EsmtpHandler::getRcptParams()" might add "array" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_AuthHandler" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_CramMd5Authenticator" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_LoginAuthenticator" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_PlainAuthenticator" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_Transport_Esmtp_Authenticator::authenticate()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_Esmtp_Auth_NTLMAuthenticator" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_Transport::ping()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_AbstractSmtpTransport" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Method "Swift_OutputByteStream::setReadPointer()" might add "bool" as a native return type declaration in the future. Do the same in implementation "Swift_Transport_StreamBuffer" now to avoid errors or add an explicit @return annotation to suppress this message. { "exception": {} } |
INFO 07:57:05 | request |
Matched route "_profiler". { "route": "_profiler", "route_parameters": { "_route": "_profiler", "_controller": "web_profiler.controller.profiler::panelAction", "token": "324427" }, "request_uri": "https://milviajes-qa.grupoaviatur.com/_profiler/324427", "method": "GET" } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-http 5.4: The "Symfony\Component\Security\Http\EntryPoint\FormAuthenticationEntryPoint" class is deprecated, use the new security system with "Symfony\Component\Security\Http\Authenticator\FormLoginAuthenticator" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.form.main" service is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\AuthenticationProviderManager" class is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Event\AuthenticationFailureEvent" class is deprecated, use "Symfony\Component\Security\Http\Event\LoginFailureEvent" with the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\UsernamePasswordFormAuthenticationListener" class is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AbstractAuthenticationListener" class is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.listener.anonymous.main" service is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-http 5.3: The "Symfony\Component\Security\Http\Firewall\AnonymousAuthenticationListener" class is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.4: Using an object that is not an instance of "Symfony\Component\Security\Core\User\UserInterface" as $user in "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" is deprecated. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AuthenticationProviderInterface" interface is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.encoder_factory.generic" service is deprecated, use "security.password_hasher_factory" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactory" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactory" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Encoder\EncoderFactoryInterface" class is deprecated, use "Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface" instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.dao.admin" service is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\DaoAuthenticationProvider" class is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\UserAuthenticationProvider" class is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.provider.anonymous.admin" service is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.3: The "Symfony\Component\Security\Core\Authentication\Provider\AnonymousAuthenticationProvider" class is deprecated, use the new authenticator system instead. { "exception": {} } |
INFO 07:57:05 | security | Populated the TokenStorage with an anonymous Token. |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-http 5.4: Not setting the $exceptionOnNoToken argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" to "false" is deprecated. { "exception": {} } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\AuthenticationTrustResolver::isAnonymous()" method is deprecated, use "isAuthenticated()" or "isFullFledged()" if you want to check if the request is (fully) authenticated. { "exception": {} } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-core 5.4: The "IS_AUTHENTICATED_ANONYMOUSLY" security attribute is deprecated, use "PUBLIC_ACCESS" for public resources, otherwise use "IS_AUTHENTICATED" or "IS_AUTHENTICATED_FULLY" instead if you want to check if the request is (fully) authenticated. { "exception": {} } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1", "params": { "1": "milviajes-qa.grupoaviatur.com", "2": "milviajes-qa.grupoaviatur.com" }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1", "params": { "1": "/_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1", "params": { "1": 222, "2": "" }, "types": { "1": 1, "2": 2 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:05 | doctrine |
Executing statement:
(SELECT p1.* FROM parameter p1
WHERE p1.agency_id = ?)
UNION
(SELECT p1.* FROM parameter p1
WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2
WHERE p2.agency_id = ?)
AND p1.agency_id IS NULL))
(parameters: {params}, types: {types}) { "sql": "\n (SELECT p1.* FROM parameter p1\n WHERE p1.agency_id = ?)\n UNION\n (SELECT p1.* FROM parameter p1\n WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2\n WHERE p2.agency_id = ?)\n AND p1.agency_id IS NULL))\n ", "params": { "1": 222, "2": 222 }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT p0_.id AS id_0, p0_.siteCode AS siteCode_1, p0_.tranKey AS tranKey_2, p0_.isActive AS isActive_3, p0_.isTest AS isTest_4, p0_.user AS user_5, p0_.password AS password_6, p0_.currency AS currency_7, p0_.testEndpoint AS testEndpoint_8, p0_.productionEndpoint AS productionEndpoint_9, p0_.siteId AS siteId_10, p0_.placeToPayRest AS placeToPayRest_11, p1_.id AS id_12, p1_.code AS code_13, p1_.description AS description_14, p1_.isActive AS isActive_15, p0_.payment_method_id AS payment_method_id_16, p0_.agency_id AS agency_id_17 FROM payment_method_agency p0_ INNER JOIN payment_method p1_ ON p0_.payment_method_id = p1_.id WHERE p0_.agency_id = ? AND p0_.isActive = ? AND p1_.code LIKE '%world%' (parameters: {params}, types: {types}) { "sql": "SELECT p0_.id AS id_0, p0_.siteCode AS siteCode_1, p0_.tranKey AS tranKey_2, p0_.isActive AS isActive_3, p0_.isTest AS isTest_4, p0_.user AS user_5, p0_.password AS password_6, p0_.currency AS currency_7, p0_.testEndpoint AS testEndpoint_8, p0_.productionEndpoint AS productionEndpoint_9, p0_.siteId AS siteId_10, p0_.placeToPayRest AS placeToPayRest_11, p1_.id AS id_12, p1_.code AS code_13, p1_.description AS description_14, p1_.isActive AS isActive_15, p0_.payment_method_id AS payment_method_id_16, p0_.agency_id AS agency_id_17 FROM payment_method_agency p0_ INNER JOIN payment_method p1_ ON p0_.payment_method_id = p1_.id WHERE p0_.agency_id = ? AND p0_.isActive = ? AND p1_.code LIKE '%world%'", "params": { "1": 222, "2": 1 }, "types": { "1": 1, "2": 1 } } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:05 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.startDate AS startDate_2, t0.endDate AS endDate_3, t0.home_promo_list_id AS home_promo_list_id_4 FROM home_promo_time t0 WHERE t0.home_promo_list_id = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.startDate AS startDate_2, t0.endDate AS endDate_3, t0.home_promo_list_id AS home_promo_list_id_4 FROM home_promo_time t0 WHERE t0.home_promo_list_id = ? LIMIT 1", "params": { "1": 2 }, "types": { "1": 1 } } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 07:57:05 | event |
Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest" } |
INFO 07:57:05 | php |
User Deprecated: Since symfony/security-bundle 5.4: Setting the $authenticatorManagerEnabled argument of "Symfony\Bundle\SecurityBundle\DataCollector\SecurityDataCollector::__construct" to "false" is deprecated, use the new authenticator system instead. { "exception": {} } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController" } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 07:57:05 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:57:05 | 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 07:57:05 | 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 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1", "params": { "1": "milviajes-qa.grupoaviatur.com", "2": "milviajes-qa.grupoaviatur.com" }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1", "params": { "1": "/_fragment", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1", "params": { "1": 222, "2": "" }, "types": { "1": 1, "2": 2 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement:
(SELECT p1.* FROM parameter p1
WHERE p1.agency_id = ?)
UNION
(SELECT p1.* FROM parameter p1
WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2
WHERE p2.agency_id = ?)
AND p1.agency_id IS NULL))
(parameters: {params}, types: {types}) { "sql": "\n (SELECT p1.* FROM parameter p1\n WHERE p1.agency_id = ?)\n UNION\n (SELECT p1.* FROM parameter p1\n WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2\n WHERE p2.agency_id = ?)\n AND p1.agency_id IS NULL))\n ", "params": { "1": 222, "2": 222 }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:57:06 | 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 07:57:06 | 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 07:57:06 | php |
User Deprecated: Since sonata-project/block-bundle 4.11: The "sonata.block.cache.handler.default" service is deprecated since sonata-project/block-bundle 4.11 and will be removed in 5.0. { "exception": {} } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse". { "event": "kernel.response", "listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Aviatur\GeneralBundle\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Aviatur\\GeneralBundle\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 07:57:06 | 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 07:57:06 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 07:57:06 | 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 07:57:06 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 07:57:06 | 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 07:57:06 | 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 07:57:06 | 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 07:57:06 | 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 07:57:06 | 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 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1", "params": { "1": "milviajes-qa.grupoaviatur.com", "2": "milviajes-qa.grupoaviatur.com" }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1", "params": { "1": "/_fragment", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1", "params": { "1": 222, "2": "" }, "types": { "1": 1, "2": 2 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement:
(SELECT p1.* FROM parameter p1
WHERE p1.agency_id = ?)
UNION
(SELECT p1.* FROM parameter p1
WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2
WHERE p2.agency_id = ?)
AND p1.agency_id IS NULL))
(parameters: {params}, types: {types}) { "sql": "\n (SELECT p1.* FROM parameter p1\n WHERE p1.agency_id = ?)\n UNION\n (SELECT p1.* FROM parameter p1\n WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2\n WHERE p2.agency_id = ?)\n AND p1.agency_id IS NULL))\n ", "params": { "1": 222, "2": 222 }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:57:06 | 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 07:57:06 | 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 07:57:06 | event |
Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse". { "event": "kernel.response", "listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Aviatur\GeneralBundle\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Aviatur\\GeneralBundle\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse". { "event": "kernel.response", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse" } |
DEBUG 07:57:06 | 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 07:57:06 | event |
Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse". { "event": "kernel.response", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse" } |
DEBUG 07:57:06 | 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 07:57:06 | event |
Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". { "event": "kernel.response", "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse" } |
DEBUG 07:57:06 | event |
Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse". { "event": "kernel.response", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse" } |
DEBUG 07:57:06 | 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 07:57:06 | 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 07:57:06 | 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 07:57:06 | 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 07:57:06 | 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 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.externalId AS externalId_2, t0.officeId AS officeId_3, t0.name AS name_4, t0.nit AS nit_5, t0.phone AS phone_6, t0.address AS address_7, t0.mailContact AS mailContact_8, t0.mailBooking AS mailBooking_9, t0.mailOperations AS mailOperations_10, t0.mailVouchers AS mailVouchers_11, t0.domain AS domain_12, t0.domainSecure AS domainSecure_13, t0.domainOld AS domainOld_14, t0.urlRoute AS urlRoute_15, t0.idClientFacebook AS idClientFacebook_16, t0.idClientGoogle AS idClientGoogle_17, t0.customPort AS customPort_18, t0.phonesContact AS phonesContact_19, t0.socialmedia AS socialmedia_20, t0.assets_folder AS assets_folder_21, t0.twigFlux AS twigFlux_22, t0.customer_id AS customer_id_23 FROM agency t0 WHERE t0.domainSecure IN (?, ?) LIMIT 1", "params": { "1": "milviajes-qa.grupoaviatur.com", "2": "milviajes-qa.grupoaviatur.com" }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.old_url AS old_url_2, t0.new_url AS new_url_3, t0.description AS description_4, t0.code AS code_5, t0.agency_id AS agency_id_6 FROM url_homologation t0 WHERE t0.old_url = ? AND t0.agency_id = ? LIMIT 1", "params": { "1": "/_fragment", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.url AS url_3, t0.referer AS referer_4, t0.embebed AS embebed_5, t0.phone AS phone_6, t0.address AS address_7, t0.email AS email_8, t0.officeId AS officeId_9, t0.phonesContact AS phonesContact_10, t0.agency_id AS agency_id_11 FROM whitemark t0 WHERE t0.agency_id = ? AND t0.url = ? LIMIT 1", "params": { "1": 222, "2": "" }, "types": { "1": 1, "2": 2 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.message AS message_3, t0.officeId AS officeId_4, t0.externalId AS externalId_5, t0.preference AS preference_6, t0.isActive AS isActive_7, t0.maxTime AS maxTime_8, t0.hasCombination AS hasCombination_9, t0.errorCount AS errorCount_10, t0.errorDatetime AS errorDatetime_11, t0.provider_id AS provider_id_12, t0.agency_id AS agency_id_13 FROM config_flight_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.wsUrl AS wsUrl_2, t0.urlType AS urlType_3, t0.type AS type_4, t0.isActive AS isActive_5, t0.agency_id AS agency_id_6, t0.provider_id AS provider_id_7 FROM config_hotel_agency t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ? (parameters: {params}, types: {types}) { "sql": "SELECT t0.id AS id_1, t0.url AS url_2, t0.name AS name_3, t0.content AS content_4, t0.agency_id AS agency_id_5 FROM seo_index t0 WHERE t0.agency_id = ?", "params": { "1": 222 }, "types": { "1": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.title AS title_2, s0_.description AS description_3, s0_.metatitle AS metatitle_4, s0_.keywords AS keywords_5, s0_.creationDate AS creationDate_6, s0_.updateDate AS updateDate_7, s0_.ipAddress AS ipAddress_8, s0_.agency_id AS agency_id_9, s0_.customer_id AS customer_id_10 FROM seo_header s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement: SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1 (parameters: {params}, types: {types}) { "sql": "SELECT s0_.id AS id_0, s0_.url AS url_1, s0_.locale AS locale_2, s0_.og_type AS og_type_3, s0_.og_title AS og_title_4, s0_.og_description AS og_description_5, s0_.og_url AS og_url_6, s0_.og_image AS og_image_7, s0_.og_site_name AS og_site_name_8, s0_.fb_admins AS fb_admins_9, s0_.og_locale AS og_locale_10, s0_.og_locale_alternate AS og_locale_alternate_11, s0_.twitter_card AS twitter_card_12, s0_.twitter_site AS twitter_site_13, s0_.twitter_creator AS twitter_creator_14, s0_.twitter_title AS twitter_title_15, s0_.twitter_description AS twitter_description_16, s0_.twitter_url AS twitter_url_17, s0_.twitter_image AS twitter_image_18, s0_.creationDate AS creationDate_19, s0_.updateDate AS updateDate_20, s0_.ipAddress AS ipAddress_21, s0_.agency_id AS agency_id_22 FROM social_meta_tag s0_ WHERE s0_.url = ? AND (s0_.agency_id = ? OR s0_.agency_id IS NULL) LIMIT 1", "params": { "1": "_profiler/324427", "2": 222 }, "types": { "1": 2, "2": 1 } } |
DEBUG 07:57:06 | doctrine |
Executing statement:
(SELECT p1.* FROM parameter p1
WHERE p1.agency_id = ?)
UNION
(SELECT p1.* FROM parameter p1
WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2
WHERE p2.agency_id = ?)
AND p1.agency_id IS NULL))
(parameters: {params}, types: {types}) { "sql": "\n (SELECT p1.* FROM parameter p1\n WHERE p1.agency_id = ?)\n UNION\n (SELECT p1.* FROM parameter p1\n WHERE (p1.name NOT IN (SELECT p2.name FROM parameter p2\n WHERE p2.agency_id = ?)\n AND p1.agency_id IS NULL))\n ", "params": { "1": 222, "2": 222 }, "types": { "1": 2, "2": 2 } } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "debug.security.authorization.vote" to listener "Symfony\Bundle\SecurityBundle\EventListener\VoteListener::onVoterVote". { "event": "debug.security.authorization.vote", "listener": "Symfony\\Bundle\\SecurityBundle\\EventListener\\VoteListener::onVoterVote" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". { "event": "kernel.request", "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". { "event": "kernel.request", "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest". { "event": "kernel.request", "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest". { "event": "kernel.request", "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest". { "event": "kernel.request", "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". { "event": "kernel.controller", "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController". { "event": "kernel.controller", "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController" } |
DEBUG 07:57:06 | event |
Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments". { "event": "kernel.controller_arguments", "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments" } |
DEBUG 07:57:06 | 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 07:57:06 | 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://viajesisa-qa.grupoaviatur.com/source/contenidos/boton-buses.jpg" at vendor/symfony/http-kernel/EventListener/RouterListener.php:135 at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (web/index.php:24) |
[1/2]
ResourceNotFoundException
|
---|
Symfony\Component\Routing\Exception\ResourceNotFoundException: No routes found for "/source/contenidos/boton-buses.jpg/". at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:74 at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match() (vendor/symfony/routing/Matcher/UrlMatcher.php:106) at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest() (vendor/symfony/routing/Router.php:257) at Symfony\Component\Routing\Router->matchRequest() (vendor/symfony/http-kernel/EventListener/RouterListener.php:111) at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest() (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118) at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke() (vendor/symfony/event-dispatcher/EventDispatcher.php:230) at Symfony\Component\EventDispatcher\EventDispatcher->callListeners() (vendor/symfony/event-dispatcher/EventDispatcher.php:59) at Symfony\Component\EventDispatcher\EventDispatcher->dispatch() (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154) at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch() (vendor/symfony/http-kernel/HttpKernel.php:139) at Symfony\Component\HttpKernel\HttpKernel->handleRaw() (vendor/symfony/http-kernel/HttpKernel.php:75) at Symfony\Component\HttpKernel\HttpKernel->handle() (vendor/symfony/http-kernel/Kernel.php:202) at Symfony\Component\HttpKernel\Kernel->handle() (web/index.php:24) |