Exceptions
Exceptions 2
Symfony\Component\HttpKernel\Exception\ NotFoundHttpException
Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#531 -statusCode: 404 -headers: [] }
- if ($referer = $request->headers->get('referer')) {
- $message .= \sprintf(' (from "%s")', $referer);
- }
- throw new NotFoundHttpException($message, $e);
- } catch (MethodNotAllowedException $e) {
- $message = \sprintf('No route found for "%s %s": Method Not Allowed (Allow: %s)', $request->getMethod(), $request->getUriForPath($request->getPathInfo()), implode(', ', $e->getAllowedMethods()));
- throw new MethodNotAllowedHttpException($e->getAllowedMethods(), $message, $e);
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/WrappedListener.php
            
                            ->
                onKernelRequest
                        (line 116)
            
        
    
    - $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
- $e = $this->stopwatch->start($this->name, 'event_listener');
- try {
- ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                __invoke
                        (line 220)
            
        
    
    - foreach ($listeners as $listener) {
- if ($stoppable && $event->isPropagationStopped()) {
- break;
- }
- $listener($event, $eventName, $this);
- }
- }
- /**
- * Sorts the internal list of listeners for the given event by priority.
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                callListeners
                        (line 56)
            
        
    
    - } else {
- $listeners = $this->getListeners($eventName);
- }
- if ($listeners) {
- $this->callListeners($listeners, $eventName, $event);
- }
- return $event;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
            
                            ->
                dispatch
                        (line 139)
            
        
    
    - try {
- $this->beforeDispatch($eventName, $event);
- try {
- $e = $this->stopwatch->start($eventName, 'section');
- try {
- $this->dispatcher->dispatch($event, $eventName);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                dispatch
                        (line 157)
            
        
    
    - */
- private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
- {
- // request
- $event = new RequestEvent($this, $request, $type);
- $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
- if ($event->hasResponse()) {
- return $this->filterResponse($event->getResponse(), $request, $type);
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                handleRaw
                        (line 76)
            
        
    
    - $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
- $this->requestStack->push($request);
- $response = null;
- try {
- return $response = $this->handleRaw($request, $type);
- } catch (\Throwable $e) {
- if ($e instanceof \Error && !$this->handleAllThrowables) {
- throw $e;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/Kernel.php
            
                            ->
                handle
                        (line 197)
            
        
    
    - $this->boot();
- ++$this->requestStackSize;
- $this->resetServices = true;
- try {
- return $this->getHttpKernel()->handle($request, $type, $catch);
- } finally {
- --$this->requestStackSize;
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
            
                            ->
                handle
                        (line 35)
            
        
    
    - ) {
- }
- public function run(): int
- {
- $response = $this->kernel->handle($this->request);
- if (Kernel::VERSION_ID >= 60400) {
- $response->send(false);
- if (\function_exists('fastcgi_finish_request') && !$this->debug) {
            
        
    
    
                    
            in
            
                vendor/autoload_runtime.php
            
                            ->
                run
                        (line 29)
            
        
    
    - $app = $app(...$args);
- exit(
- $runtime
- ->getRunner($app)
- ->run()
- );
- <?php
- use App\Kernel;
- use Symfony\Component\Dotenv\Dotenv;
- require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
- (new Dotenv())->overload(dirname(__DIR__).'/.env');
- return function (array $context) {
- return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
Symfony\Component\Routing\Exception\ ResourceNotFoundException
- if ($allowSchemes) {
- goto redirect_scheme;
- }
- }
- throw new ResourceNotFoundException(\sprintf('No routes found for "%s".', $pathinfo));
- }
- private function doMatch(string $pathinfo, array &$allow = [], array &$allowSchemes = []): array
- {
- $allow = $allowSchemes = [];
            
        
    
    
                    
            in
            
                vendor/symfony/routing/Matcher/UrlMatcher.php
            
                            ->
                match
                        (line 97)
            
        
    
    - public function matchRequest(Request $request): array
- {
- $this->request = $request;
- $ret = $this->match($request->getPathInfo());
- $this->request = null;
- return $ret;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/routing/Router.php
            
                            ->
                matchRequest
                        (line 237)
            
        
    
    - if (!$matcher instanceof RequestMatcherInterface) {
- // fallback to the default UrlMatcherInterface
- return $matcher->match($request->getPathInfo());
- }
- return $matcher->matchRequest($request);
- }
- /**
- * Gets the UrlMatcher or RequestMatcher instance associated with this Router.
- */
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/EventListener/RouterListener.php
            
                            ->
                matchRequest
                        (line 105)
            
        
    
    - // add attributes based on the request (routing)
- try {
- // matching a request is more powerful than matching a URL path + context, so try that first
- if ($this->matcher instanceof RequestMatcherInterface) {
- $parameters = $this->matcher->matchRequest($request);
- } else {
- $parameters = $this->matcher->match($request->getPathInfo());
- }
- $this->logger?->info('Matched route "{route}".', [
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/WrappedListener.php
            
                            ->
                onKernelRequest
                        (line 116)
            
        
    
    - $this->priority ??= $dispatcher->getListenerPriority($eventName, $this->listener);
- $e = $this->stopwatch->start($this->name, 'event_listener');
- try {
- ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                __invoke
                        (line 220)
            
        
    
    - foreach ($listeners as $listener) {
- if ($stoppable && $event->isPropagationStopped()) {
- break;
- }
- $listener($event, $eventName, $this);
- }
- }
- /**
- * Sorts the internal list of listeners for the given event by priority.
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/EventDispatcher.php
            
                            ->
                callListeners
                        (line 56)
            
        
    
    - } else {
- $listeners = $this->getListeners($eventName);
- }
- if ($listeners) {
- $this->callListeners($listeners, $eventName, $event);
- }
- return $event;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php
            
                            ->
                dispatch
                        (line 139)
            
        
    
    - try {
- $this->beforeDispatch($eventName, $event);
- try {
- $e = $this->stopwatch->start($eventName, 'section');
- try {
- $this->dispatcher->dispatch($event, $eventName);
- } finally {
- if ($e->isStarted()) {
- $e->stop();
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                dispatch
                        (line 157)
            
        
    
    - */
- private function handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response
- {
- // request
- $event = new RequestEvent($this, $request, $type);
- $this->dispatcher->dispatch($event, KernelEvents::REQUEST);
- if ($event->hasResponse()) {
- return $this->filterResponse($event->getResponse(), $request, $type);
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/HttpKernel.php
            
                            ->
                handleRaw
                        (line 76)
            
        
    
    - $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
- $this->requestStack->push($request);
- $response = null;
- try {
- return $response = $this->handleRaw($request, $type);
- } catch (\Throwable $e) {
- if ($e instanceof \Error && !$this->handleAllThrowables) {
- throw $e;
- }
            
        
    
    
                    
            in
            
                vendor/symfony/http-kernel/Kernel.php
            
                            ->
                handle
                        (line 197)
            
        
    
    - $this->boot();
- ++$this->requestStackSize;
- $this->resetServices = true;
- try {
- return $this->getHttpKernel()->handle($request, $type, $catch);
- } finally {
- --$this->requestStackSize;
- }
- }
            
        
    
    
                    
            in
            
                vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php
            
                            ->
                handle
                        (line 35)
            
        
    
    - ) {
- }
- public function run(): int
- {
- $response = $this->kernel->handle($this->request);
- if (Kernel::VERSION_ID >= 60400) {
- $response->send(false);
- if (\function_exists('fastcgi_finish_request') && !$this->debug) {
            
        
    
    
                    
            in
            
                vendor/autoload_runtime.php
            
                            ->
                run
                        (line 29)
            
        
    
    - $app = $app(...$args);
- exit(
- $runtime
- ->getRunner($app)
- ->run()
- );
- <?php
- use App\Kernel;
- use Symfony\Component\Dotenv\Dotenv;
- require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
- (new Dotenv())->overload(dirname(__DIR__).'/.env');
- return function (array $context) {
- return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
Logs
| Level | Channel | Message | 
|---|---|---|
| INFO 12:34:55 | php | User Deprecated: Since symfony/dependency-injection 6.4: "Symfony\Component\DependencyInjection\ContainerAwareTrait" is deprecated, use dependency injection instead. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/serializer 6.4: Passing a "Doctrine\Common\Annotations\PsrCachedReader" instance as argument 1 to "Symfony\Component\Serializer\Mapping\Loader\AttributeLoader::__construct()" is deprecated, pass null or omit the parameter instead. {
    "exception": {}
} | 
| INFO 12:34:55 | request | Matched route "_profiler". {
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "0cbd0f"
    },
    "request_uri": "https://api.tms.test.ybil.io/_profiler/0cbd0f?panel=exception&type=request",
    "method": "GET"
} | 
| DEBUG 12:34:55 | security | Checking for authenticator support. {
    "firewall_name": "main",
    "authenticators": 6
} | 
| DEBUG 12:34:55 | security | Checking support on authenticator. {
    "firewall_name": "main",
    "authenticator": "Core\\BaseBundle\\Security\\Firewall\\Main\\Authenticator\\ApiKeyAuthenticator"
} | 
| INFO 12:34:55 | php | Deprecated: explode(): Passing null to parameter #2 ($string) of type string is deprecated {
    "exception": {}
} | 
| DEBUG 12:34:55 | security | Authenticator does not support the request. {
    "firewall_name": "main",
    "authenticator": "Core\\BaseBundle\\Security\\Firewall\\Main\\Authenticator\\ApiKeyAuthenticator"
} | 
| DEBUG 12:34:55 | security | Checking support on authenticator. {
    "firewall_name": "main",
    "authenticator": "Core\\BaseBundle\\Security\\Firewall\\Main\\Authenticator\\OAuthAuthenticator"
} | 
| DEBUG 12:34:55 | security | Authenticator does not support the request. {
    "firewall_name": "main",
    "authenticator": "Core\\BaseBundle\\Security\\Firewall\\Main\\Authenticator\\OAuthAuthenticator"
} | 
| DEBUG 12:34:55 | security | Checking support on authenticator. {
    "firewall_name": "main",
    "authenticator": "Lexik\\Bundle\\JWTAuthenticationBundle\\Security\\Authenticator\\JWTAuthenticator"
} | 
| DEBUG 12:34:55 | security | Authenticator does not support the request. {
    "firewall_name": "main",
    "authenticator": "Lexik\\Bundle\\JWTAuthenticationBundle\\Security\\Authenticator\\JWTAuthenticator"
} | 
| DEBUG 12:34:55 | security | Checking support on authenticator. {
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
} | 
| DEBUG 12:34:55 | security | Authenticator does not support the request. {
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\FormLoginAuthenticator"
} | 
| DEBUG 12:34:55 | security | Checking support on authenticator. {
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\HttpBasicAuthenticator"
} | 
| DEBUG 12:34:55 | security | Authenticator does not support the request. {
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\HttpBasicAuthenticator"
} | 
| DEBUG 12:34:55 | security | Checking support on authenticator. {
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
} | 
| DEBUG 12:34:55 | security | Authenticator does not support the request. {
    "firewall_name": "main",
    "authenticator": "Symfony\\Component\\Security\\Http\\Authenticator\\RememberMeAuthenticator"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | php | User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:78 called by App_KernelDevDebugContainer.php:31975, https://github.com/doctrine/orm/pull/10455, package doctrine/orm) {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:178, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm) {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Version detection logic for MySQL will change in DBAL 4. Please specify the version as the server reports it, e.g. "8.0.31" instead of "8". (AbstractMySQLDriver.php:69 called by AbstractDriverMiddleware.php:68, https://github.com/doctrine/dbal/pull/5779, package doctrine/orm) {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Core\BaseBundle\Nomenclature\Events\EntitySubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "ATV\ApiBundle\TasksApi\Providers\Transporeon\Events\OrderEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "ATV\ApiBundle\TasksApi\Providers\Transporeon\Events\TaskOfferSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\BlameableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\LoggableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\SluggableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\SoftDeletableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\TimestampableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\TranslatableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\TreeEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Knp\DoctrineBehaviors\EventSubscriber\UuidableEventSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Core\BaseBundle\Entity\Events\EntitySubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Core\BaseBundle\Entity\Events\BaseSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "ATV\BaseBundle\Invoice\Events\DoctrineSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "ATV\BaseBundle\Order\Events\DoctrineSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "ATV\BaseBundle\PInvoice\Events\DoctrineSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | php | User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "ATV\BaseBundle\Task\Events\DoctrineSubscriber" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute. {
    "exception": {}
} | 
| INFO 12:34:55 | doctrine | Connecting with parameters {params} {
    "params": {
        "driver": "pdo_mysql",
        "charset": "utf8mb4",
        "host": "database",
        "port": 3306,
        "user": "tenants",
        "password": "<redacted>",
        "driverOptions": [],
        "serverVersion": "8",
        "defaultTableOptions": [],
        "dbname": "tenants"
    }
} | 
| DEBUG 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1",
    "params": {
        "1": "api"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1",
    "params": {
        "1": "api.tms.test.ybil.io"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\Aware\TenantAware::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\Aware\\TenantAware::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\EnvironmentProvider::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\EnvironmentProvider::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". {
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\User\LocaleSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\User\\LocaleSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "aPajo\MultiTenancyBundle\Event\Listener\RequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "aPajo\\MultiTenancyBundle\\Event\\Listener\\RequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\ApiBundle\Sse\Events\ControllerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\ApiBundle\\Sse\\Events\\ControllerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onLateKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onLateKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\Access\Controller\Event\AccessSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\Access\\Controller\\Event\\AccessSubscriber::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\ApiCalls\Events\KernelSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\ApiCalls\\Events\\KernelSubscriber::onKernelController"
} | 
| INFO 12:34:55 | php | User Deprecated: The annotation mapping driver is deprecated and will be removed in Doctrine ORM 3.0, please migrate to the attribute or XML driver. (AnnotationDriver.php:68 called by App_KernelDevDebugContainer.php:32149, https://github.com/doctrine/orm/issues/10098, package doctrine/orm) {
    "exception": {}
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "ContainerOvKGLk5\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "ContainerOvKGLk5\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1",
    "params": {
        "1": "api"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1",
    "params": {
        "1": "api.tms.test.ybil.io"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\Aware\TenantAware::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\Aware\\TenantAware::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\EnvironmentProvider::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\EnvironmentProvider::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". {
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\User\LocaleSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\User\\LocaleSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "aPajo\MultiTenancyBundle\Event\Listener\RequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "aPajo\\MultiTenancyBundle\\Event\\Listener\\RequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\ApiBundle\Sse\Events\ControllerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\ApiBundle\\Sse\\Events\\ControllerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onLateKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onLateKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\Access\Controller\Event\AccessSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\Access\\Controller\\Event\\AccessSubscriber::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\ApiCalls\Events\KernelSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\ApiCalls\\Events\\KernelSubscriber::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "ContainerOvKGLk5\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "ContainerOvKGLk5\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | event | Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Core\ApiBundle\Sse\Events\ControllerSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Core\\ApiBundle\\Sse\\Events\\ControllerSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Core\BaseBundle\ApiCalls\Events\KernelSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Core\\BaseBundle\\ApiCalls\\Events\\KernelSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | 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 12:34:55 | 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 12:34:55 | 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 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1",
    "params": {
        "1": "api"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1",
    "params": {
        "1": "api.tms.test.ybil.io"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\Aware\TenantAware::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\Aware\\TenantAware::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\EnvironmentProvider::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\EnvironmentProvider::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". {
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\User\LocaleSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\User\\LocaleSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "aPajo\MultiTenancyBundle\Event\Listener\RequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "aPajo\\MultiTenancyBundle\\Event\\Listener\\RequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\ApiBundle\Sse\Events\ControllerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\ApiBundle\\Sse\\Events\\ControllerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onLateKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onLateKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\Access\Controller\Event\AccessSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\Access\\Controller\\Event\\AccessSubscriber::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\ApiCalls\Events\KernelSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\ApiCalls\\Events\\KernelSubscriber::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "ContainerOvKGLk5\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "ContainerOvKGLk5\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | event | Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\Mercure\EventSubscriber\SetCookieSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\Mercure\\EventSubscriber\\SetCookieSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Core\ApiBundle\Sse\Events\ControllerSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Core\\ApiBundle\\Sse\\Events\\ControllerSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Core\BaseBundle\ApiCalls\Events\KernelSubscriber::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Core\\BaseBundle\\ApiCalls\\Events\\KernelSubscriber::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse". {
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse". {
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
} | 
| DEBUG 12:34:55 | 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 12:34:55 | 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 12:34:55 | 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 12:34:55 | 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 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.`key` = ? LIMIT 1",
    "params": {
        "1": "api"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | doctrine | Executing statement: SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1 (parameters: {params}, types: {types}) {
    "sql": "SELECT t0.name AS name_1, t0.host AS host_2, t0.`key` AS key_3, t0.`database` AS database_4, t0.filesystem AS filesystem_5, t0.mailer AS mailer_6, t0.icon AS icon_7, t0.logo AS logo_8, t0.logo_horizontal AS logo_horizontal_9, t0.pdf_logo AS pdf_logo_10, t0.pdf_hor AS pdf_hor_11, t0.pdf_ver AS pdf_ver_12, t0.pdf_hor_bin AS pdf_hor_bin_13, t0.pdf_ver_bin AS pdf_ver_bin_14, t0.database_status AS database_status_15, t0.id AS id_16 FROM tenant t0 WHERE t0.host = ? LIMIT 1",
    "params": {
        "1": "api.tms.test.ybil.io"
    },
    "types": {
        "1": 2
    }
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\Aware\TenantAware::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\Aware\\TenantAware::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "aPajo\MultiTenancyBundle\Event\TenantSelectEvent" to listener "aPajo\MultiTenancyBundle\Service\EnvironmentProvider::onTenantSelectEvent". {
    "event": "aPajo\\MultiTenancyBundle\\Event\\TenantSelectEvent",
    "listener": "aPajo\\MultiTenancyBundle\\Service\\EnvironmentProvider::onTenantSelectEvent"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\UX\Turbo\Request\RequestListener::__invoke". {
    "event": "kernel.request",
    "listener": "Symfony\\UX\\Turbo\\Request\\RequestListener::__invoke"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\AssetMapper\AssetMapperDevServerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\AssetMapper\\AssetMapperDevServerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\User\LocaleSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\User\\LocaleSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "aPajo\MultiTenancyBundle\Event\Listener\RequestListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "aPajo\\MultiTenancyBundle\\Event\\Listener\\RequestListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\ApiBundle\Sse\Events\ControllerSubscriber::onKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\ApiBundle\\Sse\\Events\\ControllerSubscriber::onKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.request" to listener "Core\TenantBundle\Translations\Listener\DoctrineExtensionListener::onLateKernelRequest". {
    "event": "kernel.request",
    "listener": "Core\\TenantBundle\\Translations\\Listener\\DoctrineExtensionListener::onLateKernelRequest"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController". {
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\Access\Controller\Event\AccessSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\Access\\Controller\\Event\\AccessSubscriber::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller" to listener "Core\BaseBundle\ApiCalls\Events\KernelSubscriber::onKernelController". {
    "event": "kernel.controller",
    "listener": "Core\\BaseBundle\\ApiCalls\\Events\\KernelSubscriber::onKernelController"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | event | Notified event "kernel.controller_arguments" to listener "ContainerOvKGLk5\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments". {
    "event": "kernel.controller_arguments",
    "listener": "ContainerOvKGLk5\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
} | 
| DEBUG 12:34:55 | 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"
} | 
Stack Traces 2
| 
                                            [2/2]
                                        NotFoundHttpException                    
                    
                 | 
|---|
| 
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
No route found for "GET https://api.tms.test.ybil.io/robots.txt"
  at vendor/symfony/http-kernel/EventListener/RouterListener.php:127
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/symfony/vendor/autoload_runtime.php')
     (public/index.php:6)                 | 
| 
                                            [1/2]
                                        ResourceNotFoundException                    
                    
                 | 
|---|
| 
Symfony\Component\Routing\Exception\ResourceNotFoundException:
No routes found for "/robots.txt/".
  at vendor/symfony/routing/Matcher/Dumper/CompiledUrlMatcherTrait.php:70
  at Symfony\Component\Routing\Matcher\CompiledUrlMatcher->match('/robots.txt/')
     (vendor/symfony/routing/Matcher/UrlMatcher.php:97)
  at Symfony\Component\Routing\Matcher\UrlMatcher->matchRequest(object(Request))
     (vendor/symfony/routing/Router.php:237)
  at Symfony\Component\Routing\Router->matchRequest(object(Request))
     (vendor/symfony/http-kernel/EventListener/RouterListener.php:105)
  at Symfony\Component\HttpKernel\EventListener\RouterListener->onKernelRequest(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/Debug/WrappedListener.php:116)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(RequestEvent), 'kernel.request', object(TraceableEventDispatcher))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:220)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.request', object(RequestEvent))
     (vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:139)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(RequestEvent), 'kernel.request')
     (vendor/symfony/http-kernel/HttpKernel.php:157)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/symfony/vendor/autoload_runtime.php')
     (public/index.php:6)                 |