https://viajesisa-qa.grupoaviatur.com/source/contenidos/boton-buses.jpg

Exceptions

No route found for "GET https://viajesisa-qa.grupoaviatur.com/source/contenidos/boton-buses.jpg"

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

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

Symfony\Component\Routing\Exception\ ResourceNotFoundException

No routes found for "/source/contenidos/boton-buses.jpg/".

  1.             if ($allowSchemes) {
  2.                 goto redirect_scheme;
  3.             }
  4.         }
  5.         throw new ResourceNotFoundException(sprintf('No routes found for "%s".'$pathinfo));
  6.     }
  7.     private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
  8.     {
  9.         $allow $allowSchemes = [];
  1.      */
  2.     public function matchRequest(Request $request)
  3.     {
  4.         $this->request $request;
  5.         $ret $this->match($request->getPathInfo());
  6.         $this->request null;
  7.         return $ret;
  8.     }
in vendor/symfony/routing/Router.php -> matchRequest (line 257)
  1.         if (!$matcher instanceof RequestMatcherInterface) {
  2.             // fallback to the default UrlMatcherInterface
  3.             return $matcher->match($request->getPathInfo());
  4.         }
  5.         return $matcher->matchRequest($request);
  6.     }
  7.     /**
  8.      * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
  9.      *
  1.         // add attributes based on the request (routing)
  2.         try {
  3.             // matching a request is more powerful than matching a URL path + context, so try that first
  4.             if ($this->matcher instanceof RequestMatcherInterface) {
  5.                 $parameters $this->matcher->matchRequest($request);
  6.             } else {
  7.                 $parameters $this->matcher->match($request->getPathInfo());
  8.             }
  9.             if (null !== $this->logger) {
  1.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  2.         $e $this->stopwatch->start($this->name'event_listener');
  3.         try {
  4.             ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         } finally {
  6.             if ($e->isStarted()) {
  7.                 $e->stop();
  8.             }
  9.         }
  1.         foreach ($listeners as $listener) {
  2.             if ($stoppable && $event->isPropagationStopped()) {
  3.                 break;
  4.             }
  5.             $listener($event$eventName$this);
  6.         }
  7.     }
  8.     /**
  9.      * Sorts the internal list of listeners for the given event by priority.
  1.         } else {
  2.             $listeners $this->getListeners($eventName);
  3.         }
  4.         if ($listeners) {
  5.             $this->callListeners($listeners$eventName$event);
  6.         }
  7.         return $event;
  8.     }
  1.         try {
  2.             $this->beforeDispatch($eventName$event);
  3.             try {
  4.                 $e $this->stopwatch->start($eventName'section');
  5.                 try {
  6.                     $this->dispatcher->dispatch($event$eventName);
  7.                 } finally {
  8.                     if ($e->isStarted()) {
  9.                         $e->stop();
  10.                     }
  11.                 }
  1.      */
  2.     private function handleRaw(Request $requestint $type self::MAIN_REQUEST): Response
  3.     {
  4.         // request
  5.         $event = new RequestEvent($this$request$type);
  6.         $this->dispatcher->dispatch($eventKernelEvents::REQUEST);
  7.         if ($event->hasResponse()) {
  8.             return $this->filterResponse($event->getResponse(), $request$type);
  9.         }
  1.     {
  2.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  3.         $this->requestStack->push($request);
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle() in web/index.php (line 24)
  1.     Request::setTrustedHosts([$trustedHosts]);
  2. }
  3. $kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
  4. $request Request::createFromGlobals();
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs

Level Channel Message
INFO 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 05:37:16 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 05:37:16 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 05:37:16 php User Deprecated: Since symfony/framework-bundle 5.3: The "session.storage.native" service is deprecated, use "session.storage.factory.native" instead.
{
    "exception": {}
}
INFO 05:37:16 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 05:37:16 php User Deprecated: Since symfony/http-foundation 5.3: "Symfony\Component\HttpFoundation\RequestStack::getMasterRequest()" is deprecated, use "getMainRequest()" instead.
{
    "exception": {}
}
INFO 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 php User Deprecated: Since symfony/security-bundle 5.3: The "security.authentication.manager" service is deprecated, use the new authenticator system instead.
{
    "exception": {}
}
INFO 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 php User Deprecated: Since symfony/security-core 5.4: The "Symfony\Component\Security\Core\Authentication\Token\AnonymousToken" class is deprecated.
{
    "exception": {}
}
INFO 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 security Populated the TokenStorage with an anonymous Token.
INFO 05:37:16 php User Deprecated: Since symfony/security-http 5.4: The $authManager argument of "Symfony\Component\Security\Http\Firewall\AccessListener::__construct" is deprecated.
{
    "exception": {}
}
INFO 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 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 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 05:37:16 event Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest"
}
INFO 05:37:16 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 05:37:16 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 05:37:16 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 05:37:16 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 05:37:16 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 05:37:16 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 05:37:16 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 05:37:16 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 05:37:16 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 05:37:16 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 05:37:16 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 event Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Aviatur\GeneralBundle\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Aviatur\\GeneralBundle\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse".
{
    "event": "kernel.response",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 05:37:17 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 05:37:17 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 05:37:17 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 05:37:17 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 event Notified event "kernel.response" to listener "Sonata\BlockBundle\Cache\HttpCacheHandler::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sonata\\BlockBundle\\Cache\\HttpCacheHandler::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Aviatur\GeneralBundle\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Aviatur\\GeneralBundle\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleResponse".
{
    "event": "kernel.response",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 05:37:17 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 05:37:17 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 05:37:17 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 05:37:17 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 05:37:17 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 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 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\FragmentListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "MobileDetectBundle\\EventListener\\RequestResponseListener::handleRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Knp\\Bundle\\PaginatorBundle\\Subscriber\\SlidingPaginationSubscriber::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.request" to listener "Aviatur\GeneralBundle\EventListener\RequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Aviatur\\GeneralBundle\\EventListener\\RequestListener::onKernelRequest"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 05:37:17 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 05:37:17 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 05:37:17 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 05:37:17 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)