The challenges of integrating a professional retainer into a company's existing processes
06/09/2023

Graphic design plays a crucial role in establishing a brand's identity and creating custom designs that resonate with its target audience. Many companies recognize the importance of consistent and high-quality design in their marketing efforts, which is why they opt for professional design services. One popular option is to hire a dedicated designer on a retainer basis, allowing for ongoing creative support and collaboration. However, integrating a professional retainer into a company's existing processes can present some challenges that need to be addressed. In this article, we will explore these challenges and provide insights on how to overcome them.

Challenges of Integrating a Professional Retainer

1. Resistance to Change: One of the main challenges when integrating a professional retainer into a company's existing processes is resistance to change. Some employees may be hesitant to collaborate with an external designer, especially if they have been used to handling design tasks internally. This resistance can stem from a fear of losing control or a lack of understanding of the benefits that a professional retainer can bring. It is important to address these concerns and communicate the value of the retainer to the team.

2. Establishing a Design Partnership: Another challenge is establishing a strong design partnership between the company and the retainer. It is essential to foster open communication and collaboration to ensure that the designer understands the company's brand identity and goals. Regular design consultations can help align expectations and provide an opportunity for creative collaboration. Building a strong relationship with the retainer is key to achieving consistent and high-quality design work.

3. Adapting to Tailored Design Solutions: Companies that are used to handling design tasks internally may be accustomed to a certain level of control over the design process. When working with a professional retainer, it is important to adapt to a more tailored design approach. The retainer will bring their expertise and creative input to the table, which may require some adjustment from the company's side. Embracing this collaboration and being open to new ideas can lead to innovative and impactful design solutions.

4. Managing Design Maintenance: Ongoing design maintenance is another challenge that comes with integrating a professional retainer. Companies need to ensure that the retainer is equipped to handle their design needs on a regular basis. This includes managing design revisions, keeping up with brand consistency, and providing timely deliverables. Clear communication and setting expectations upfront can help streamline the design maintenance process and ensure that the retainer meets the company's requirements.

Overcoming the Challenges

1. Education and Training: To address resistance to change, it is important to educate employees about the benefits of a professional retainer. Highlight the advantages of having access to a dedicated designer who can provide expertise and fresh perspectives. Offer training sessions or workshops to familiarize the team with the retainer's role and how to effectively collaborate with them. By providing the necessary education and training, you can help employees overcome their concerns and embrace the retainer as a valuable asset.

2. Open Communication and Collaboration: Building a strong design partnership requires open communication and collaboration. Schedule regular design consultations where the company and retainer can discuss ongoing projects, provide feedback, and brainstorm ideas. Encourage the team to share their vision and goals with the retainer, and ensure that the retainer understands the company's brand identity and values. Foster a collaborative environment where both parties can contribute their expertise and creative input.

3. Flexibility and Adaptability: Adapting to a more tailored design approach may require some flexibility and adaptability from the company's side. Embrace the retainer's expertise and be open to new ideas and suggestions. Allow the retainer to take the lead in certain design projects while providing clear guidelines and objectives. By being flexible and adaptable, you can benefit from the retainer's creative input and achieve impactful design solutions.

4. Clear Communication and Expectation Setting: To effectively manage design maintenance, clear communication and expectation setting are crucial. Clearly communicate your design requirements and deadlines to the retainer, and ensure that they understand the level of brand consistency you expect. Establish a system for managing design revisions and provide timely feedback to the retainer. Regularly review the retainer's performance and address any concerns or issues that may arise. By setting clear expectations and maintaining open communication, you can ensure that the design maintenance process runs smoothly.

Conclusion

Integrating a professional retainer into a company's existing processes can be challenging, but with the right approach, it can bring numerous benefits. Overcoming resistance to change, establishing a strong design partnership, adapting to tailored design solutions, and managing design maintenance are key challenges that need to be addressed. By providing education and training, fostering open communication and collaboration, embracing flexibility and adaptability, and setting clear expectations, companies can successfully integrate a professional retainer and leverage their design expertise for enhanced brand identity and creative solutions.

Read

More Stories


28/02/2024
Embracing the Cloud: Exploring Cloud-Native Technologies
Read More
06/09/2023
The role of graphic design in advertising
Read More
06/09/2023
The use of color theory in graphic design
Read More

Contact us

coffee_cup_2x

Spanning 8 cities worldwide and with partners in 100 more, we’re your local yet global agency.

Fancy a coffee, virtual or physical? It’s on us – let’s connect!





Loading…
Loading the web debug toolbar…
Attempt #
Notice: file_put_contents(): Write of 78232 bytes failed with errno=28 No space left on device (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Notice: file_put_contents(): Write of 78232 bytes failed with errno=28 No space left on device

Exception

ErrorException

  1.         if (\function_exists('gzencode')) {
  2.             $data gzencode($data3);
  3.         }
  4.         if (false === file_put_contents($file$data\LOCK_EX)) {
  5.             return false;
  6.         }
  7.         if (!$profileIndexed) {
  8.             // Add to index
  1.             if ($collector instanceof LateDataCollectorInterface) {
  2.                 $collector->lateCollect();
  3.             }
  4.         }
  5.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  6.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => \get_class($this->storage)]);
  7.         }
  8.         return $ret;
  9.     }
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  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.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
in vendor/symfony/http-kernel/Kernel.php -> terminate (line 159)
  1.         if (false === $this->booted) {
  2.             return;
  3.         }
  4.         if ($this->getHttpKernel() instanceof TerminableInterface) {
  5.             $this->getHttpKernel()->terminate($request$response);
  6.         }
  7.     }
  8.     /**
  9.      * {@inheritdoc}
Kernel->terminate() in public/index.php (line 41)
  1. Tool::setCurrentRequest(null);
  2. $response $kernel->handle($request);
  3. $response->send();
  4. $kernel->terminate($request$response);

Logs 3

Level Channel Message
DEBUG 23:22:15 cache Key site_domain_da8f7f6218483699e80b5671075587ef doesn't exist in cache
{
    "key": "site_domain_da8f7f6218483699e80b5671075587ef"
}
DEBUG 23:22:15 doctrine SELECT * FROM sites WHERE mainDomain = ? OR domains LIKE ?
[
    "www.centricdxb.com",
    "%\"www.centricdxb.com\"%"
]
DEBUG 23:22:15 doctrine SELECT id,domains FROM sites
DEBUG 23:22:15 doctrine SELECT * FROM redirects WHERE ( (source = :sourcePath AND (`type` = :typePath OR `type` = :typeAuto)) OR (source = :sourcePathQuery AND `type` = :typePathQuery) OR (source = :sourceEntireUri AND `type` = :typeEntireUri) ) AND active = 1 AND regex IS NULL AND (expiry > UNIX_TIMESTAMP() OR expiry IS NULL) AND sourceSite IS NULL AND priority = 99 ORDER BY `priority` DESC
{
    "sourcePath": "/insights/design-retainers [...]",
    "sourcePathQuery": "/insights/design-retainers [...]",
    "sourceEntireUri": "https://www.centricdxb.com [...]",
    "typePath": "path",
    "typePathQuery": "path_query",
    "typeEntireUri": "entire_uri",
    "typeAuto": "auto_create"
}
DEBUG 23:22:15 cache Key system_route_redirect doesn't exist in cache
{
    "key": "system_route_redirect"
}
DEBUG 23:22:15 doctrine INSERT INTO lock_keys (key_id, key_token, key_expiration) VALUES (?, ?, UNIX_TIMESTAMP() + 300)
[
    "8af919885c2e7d00208f20a73f [...]",
    "BY2s8fMqIFeAp4i+ZQEmNTBBra [...]"
]
DEBUG 23:22:15 app Successfully acquired the "{resource}" lock.
{
    "resource": {}
}
DEBUG 23:22:15 doctrine UPDATE lock_keys SET key_expiration = UNIX_TIMESTAMP() + ?, key_token = ? WHERE key_id = ? AND (key_token = ? OR key_expiration <= UNIX_TIMESTAMP())
[
    300,
    "BY2s8fMqIFeAp4i+ZQEmNTBBra [...]",
    "8af919885c2e7d00208f20a73f [...]",
    "BY2s8fMqIFeAp4i+ZQEmNTBBra [...]"
]
DEBUG 23:22:15 doctrine SELECT 1 FROM lock_keys WHERE key_id = ? AND key_token = ? AND key_expiration > UNIX_TIMESTAMP()
[
    "8af919885c2e7d00208f20a73f [...]",
    "BY2s8fMqIFeAp4i+ZQEmNTBBra [...]"
]
DEBUG 23:22:15 app Expiration defined for "{resource}" lock for "300" seconds.
{
    "resource": {},
    "ttl": 300
}
DEBUG 23:22:15 cache Key system_route_redirect doesn't exist in cache
{
    "key": "system_route_redirect"
}
DEBUG 23:22:15 doctrine SELECT id FROM redirects WHERE active = 1 AND regex = 1 ORDER BY `priority` DESC
WARNING 23:22:15 cache Failed to save key "system_route_redirect" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "system_route_redirect",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "redirecttags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "redirect\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "routetags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "route\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "systemtags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "system\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "system_route_redirecttags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "system_route_redirect\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "tagssystem_route_redirect" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "\u0000tags\u0000system_route_redirect",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
ERROR 23:22:15 cache Failed to add entry system_route_redirect to cache. Item size was 6 B
{
    "key": "system_route_redirect",
    "itemSize": "6 B"
}
DEBUG 23:22:15 doctrine DELETE FROM lock_keys WHERE key_id = ? AND key_token = ?
[
    "8af919885c2e7d00208f20a73f [...]",
    "BY2s8fMqIFeAp4i+ZQEmNTBBra [...]"
]
DEBUG 23:22:15 doctrine SELECT 1 FROM lock_keys WHERE key_id = ? AND key_token = ? AND key_expiration > UNIX_TIMESTAMP()
[
    "8af919885c2e7d00208f20a73f [...]",
    "BY2s8fMqIFeAp4i+ZQEmNTBBra [...]"
]
DEBUG 23:22:15 doctrine SELECT * FROM settings_store WHERE id = :id AND scope = :scope
{
    "id": "reports",
    "scope": "pimcore"
}
INFO 23:22:15 request Matched route "insights_category_detail".
{
    "route": "insights_category_detail",
    "route_parameters": {
        "_route": "insights_category_detail",
        "_controller": "App\\Controller\\BlogController::blogDetailAction",
        "category": "design-retainers",
        "url": "the-challenges-of-integrating-a-professional-retainer-into-a-companys-existing-processes"
    },
    "request_uri": "https://www.centricdxb.com/insights/design-retainers/the-challenges-of-integrating-a-professional-retainer-into-a-companys-existing-processes",
    "method": "GET"
}
DEBUG 23:22:15 app Resolved pimcore context for path /insights/design-retainers/the-challenges-of-integrating-a-professional-retainer-into-a-companys-existing-processes to default
{
    "path": "/insights/design-retainers/the-challenges-of-integrating-a-professional-retainer-into-a-companys-existing-processes",
    "context": "default"
}
DEBUG 23:22:15 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "the-challenges-of-integrat [...]",
    "path": "/insights/design-retainers/"
}
DEBUG 23:22:15 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/insights/design-retainers [...]"
}
DEBUG 23:22:15 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "design-retainers",
    "path": "/insights/"
}
DEBUG 23:22:15 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/insights/design-retainers"
}
DEBUG 23:22:15 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "insights",
    "path": "/"
}
DEBUG 23:22:15 cache Key document_25 doesn't exist in cache
{
    "key": "document_25"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    25
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    25
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_properties_25 doesn't exist in cache
{
    "key": "document_properties_25"
}
DEBUG 23:22:15 cache Key document_1 doesn't exist in cache
{
    "key": "document_1"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    1
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    1
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    25
]
DEBUG 23:22:15 doctrine SELECT id FROM targeting_target_groups UNION SELECT id FROM targeting_rules LIMIT 1
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: Usage of method Pimcore\Tool\Session::requestHasSessionId is deprecated since version 10.6 and will be removed in Pimcore 11. No alternative given, use Request Session instead.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: Usage of method Pimcore\Tool\Session::getReadOnly is deprecated since version 10.6 and will be removed in Pimcore 11. No alternative given.
{
    "exception": {}
}
DEBUG 23:22:15 pimcore_admin.session Opening admin session PHPSESSID
{
    "name": "PHPSESSID"
}
DEBUG 23:22:15 pimcore_admin.session Admin session PHPSESSID was successfully opened. Open admin sessions: 1
{
    "name": "PHPSESSID",
    "count": 1
}
DEBUG 23:22:15 event Notified event "pimcore.targeting.pre_resolve" to listener "Pimcore\Targeting\EventListener\TargetingListener::onPreResolve".
{
    "event": "pimcore.targeting.pre_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onPreResolve"
}
DEBUG 23:22:15 event Notified event "pimcore.targeting.pre_resolve" to listener "Pimcore\Targeting\EventListener\DocumentTargetGroupListener::onVisitorInfoResolve".
{
    "event": "pimcore.targeting.pre_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\DocumentTargetGroupListener::onVisitorInfoResolve"
}
DEBUG 23:22:15 event Notified event "pimcore.targeting.pre_resolve" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onPreResolve".
{
    "event": "pimcore.targeting.pre_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onPreResolve"
}
DEBUG 23:22:15 doctrine SELECT id FROM targeting_rules WHERE active = 1 ORDER BY `prio` ASC
DEBUG 23:22:15 event Notified event "pimcore.targeting.post_resolve" to listener "Pimcore\Targeting\EventListener\VisitedPagesCountListener::onPostResolveVisitorInfo".
{
    "event": "pimcore.targeting.post_resolve",
    "listener": "Pimcore\\Targeting\\EventListener\\VisitedPagesCountListener::onPostResolveVisitorInfo"
}
DEBUG 23:22:15 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\Session\AdminSessionBagConfigurator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\Session\\AdminSessionBagConfigurator::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 23:22:15 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:22:15 cache Key document_target_groups_25 doesn't exist in cache
{
    "key": "document_target_groups_25"
}
DEBUG 23:22:15 doctrine SELECT * FROM documents_editables WHERE documentId = ?
[
    25
]
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 23:22:15 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 23:22:15 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 23:22:15 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 23:22:15 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 23:22:15 doctrine SELECT name FROM classes WHERE id = ?
[
    "blogcategories"
]
DEBUG 23:22:15 doctrine SELECT object_blogcategories.o_id as o_id, object_blogcategories.o_type as o_type FROM object_blogcategories WHERE (`url` = 'design-retainers' AND object_blogcategories.o_type IN ('object','folder')) AND object_blogcategories.o_published = 1 LIMIT 1
DEBUG 23:22:15 cache Key object_451 doesn't exist in cache
{
    "key": "object_451"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    451
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    451
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    451
]
DEBUG 23:22:15 cache Key asset_1381 doesn't exist in cache
{
    "key": "asset_1381"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1381
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    451
]
DEBUG 23:22:15 doctrine SELECT name FROM classes WHERE id = ?
[
    "blogs"
]
DEBUG 23:22:15 doctrine SELECT object_blogs.o_id as o_id, object_blogs.o_type as o_type FROM object_blogs WHERE (`url` = 'the-challenges-of-integrating-a-professional-retainer-into-a-companys-existing-processes' AND object_blogs.o_type IN ('object','folder')) AND object_blogs.o_published = 1 LIMIT 1
DEBUG 23:22:15 cache Key object_7465 doesn't exist in cache
{
    "key": "object_7465"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    7465
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    7465
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    7465
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    7465
]
DEBUG 23:22:15 doctrine SELECT object_blogcategories.o_id as o_id, object_blogcategories.o_type as o_type FROM object_blogcategories WHERE ( object_blogcategories.o_type IN ('object','folder')) AND object_blogcategories.o_published = 1 ORDER BY `o_Creationdate` DESC
DEBUG 23:22:15 cache Key object_20780 doesn't exist in cache
{
    "key": "object_20780"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    20780
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    20780
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    20780
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    20780
]
DEBUG 23:22:15 cache Key object_806 doesn't exist in cache
{
    "key": "object_806"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    806
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    806
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    806
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    806
]
DEBUG 23:22:15 cache Key object_462 doesn't exist in cache
{
    "key": "object_462"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    462
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    462
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    462
]
DEBUG 23:22:15 cache Key asset_1398 doesn't exist in cache
{
    "key": "asset_1398"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1398
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    462
]
DEBUG 23:22:15 cache Key object_461 doesn't exist in cache
{
    "key": "object_461"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    461
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    461
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    461
]
DEBUG 23:22:15 cache Key asset_1391 doesn't exist in cache
{
    "key": "asset_1391"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1391
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    461
]
DEBUG 23:22:15 cache Key object_460 doesn't exist in cache
{
    "key": "object_460"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    460
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    460
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    460
]
DEBUG 23:22:15 cache Key asset_1390 doesn't exist in cache
{
    "key": "asset_1390"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1390
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    460
]
DEBUG 23:22:15 cache Key object_459 doesn't exist in cache
{
    "key": "object_459"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    459
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    459
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    459
]
DEBUG 23:22:15 cache Key asset_1389 doesn't exist in cache
{
    "key": "asset_1389"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1389
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    459
]
DEBUG 23:22:15 cache Key object_458 doesn't exist in cache
{
    "key": "object_458"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    458
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    458
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    458
]
DEBUG 23:22:15 cache Key asset_1388 doesn't exist in cache
{
    "key": "asset_1388"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1388
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    458
]
DEBUG 23:22:15 cache Key object_457 doesn't exist in cache
{
    "key": "object_457"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    457
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    457
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    457
]
DEBUG 23:22:15 cache Key asset_1387 doesn't exist in cache
{
    "key": "asset_1387"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1387
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    457
]
DEBUG 23:22:15 cache Key object_456 doesn't exist in cache
{
    "key": "object_456"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    456
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    456
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    456
]
DEBUG 23:22:15 cache Key asset_1386 doesn't exist in cache
{
    "key": "asset_1386"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1386
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    456
]
DEBUG 23:22:15 cache Key object_455 doesn't exist in cache
{
    "key": "object_455"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    455
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    455
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    455
]
DEBUG 23:22:15 cache Key asset_1385 doesn't exist in cache
{
    "key": "asset_1385"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1385
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    455
]
DEBUG 23:22:15 cache Key object_454 doesn't exist in cache
{
    "key": "object_454"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    454
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    454
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    454
]
DEBUG 23:22:15 cache Key asset_1384 doesn't exist in cache
{
    "key": "asset_1384"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1384
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    454
]
DEBUG 23:22:15 cache Key object_453 doesn't exist in cache
{
    "key": "object_453"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    453
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    453
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    453
]
DEBUG 23:22:15 cache Key asset_1383 doesn't exist in cache
{
    "key": "asset_1383"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1383
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    453
]
DEBUG 23:22:15 cache Key object_452 doesn't exist in cache
{
    "key": "object_452"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    452
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    452
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    452
]
DEBUG 23:22:15 cache Key asset_1397 doesn't exist in cache
{
    "key": "asset_1397"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1397
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    452
]
DEBUG 23:22:15 cache Key object_450 doesn't exist in cache
{
    "key": "object_450"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    450
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    450
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    450
]
DEBUG 23:22:15 cache Key asset_1382 doesn't exist in cache
{
    "key": "asset_1382"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1382
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    450
]
DEBUG 23:22:15 cache Key object_449 doesn't exist in cache
{
    "key": "object_449"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    449
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    449
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    449
]
DEBUG 23:22:15 cache Key asset_1380 doesn't exist in cache
{
    "key": "asset_1380"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1380
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    449
]
DEBUG 23:22:15 cache Key object_448 doesn't exist in cache
{
    "key": "object_448"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    448
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    448
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    448
]
DEBUG 23:22:15 cache Key asset_1299 doesn't exist in cache
{
    "key": "asset_1299"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1299
]
DEBUG 23:22:15 cache Key asset_1379 doesn't exist in cache
{
    "key": "asset_1379"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1379
]
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    448
]
DEBUG 23:22:15 cache Key nav_79194784086604de5ae31713ba09ce55 doesn't exist in cache
{
    "key": "nav_79194784086604de5ae31713ba09ce55"
}
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    1
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    1
]
DEBUG 23:22:15 cache Key document_20 doesn't exist in cache
{
    "key": "document_20"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    20
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    20
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_23 doesn't exist in cache
{
    "key": "document_23"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    23
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    23
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_96 doesn't exist in cache
{
    "key": "document_96"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    96
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    96
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_24 doesn't exist in cache
{
    "key": "document_24"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    24
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_link.*, tree_locks.locked FROM documents LEFT JOIN documents_link ON documents.id = documents_link.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    24
]
DEBUG 23:22:15 cache Key document_82 doesn't exist in cache
{
    "key": "document_82"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    82
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    82
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_26 doesn't exist in cache
{
    "key": "document_26"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    26
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    26
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_12 doesn't exist in cache
{
    "key": "document_12"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    12
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    12
]
DEBUG 23:22:15 cache Key document_3 doesn't exist in cache
{
    "key": "document_3"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    3
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    3
]
DEBUG 23:22:15 cache Key document_87 doesn't exist in cache
{
    "key": "document_87"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    87
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    87
]
DEBUG 23:22:15 cache Key document_91 doesn't exist in cache
{
    "key": "document_91"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    91
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    91
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_92 doesn't exist in cache
{
    "key": "document_92"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    92
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    92
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_93 doesn't exist in cache
{
    "key": "document_93"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    93
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    93
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_95 doesn't exist in cache
{
    "key": "document_95"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    95
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    95
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_97 doesn't exist in cache
{
    "key": "document_97"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    97
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    97
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_98 doesn't exist in cache
{
    "key": "document_98"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    98
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    98
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_99 doesn't exist in cache
{
    "key": "document_99"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    99
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    99
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT id FROM sites ORDER BY (SELECT LENGTH(path) FROM documents WHERE documents.id = sites.rootId) DESC
DEBUG 23:22:15 cache Key document_properties_20 doesn't exist in cache
{
    "key": "document_properties_20"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    20
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    20
]
DEBUG 23:22:15 cache Key object_42 doesn't exist in cache
{
    "key": "object_42"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    42
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    42
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT objects.o_id as o_id, objects.o_type as o_type FROM objects WHERE (o_parentId = ? AND objects.o_type IN ('object','folder')) AND objects.o_published = 1 ORDER BY `o_key` ASC
[
    42
]
DEBUG 23:22:15 cache Key object_437 doesn't exist in cache
{
    "key": "object_437"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    437
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    437
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT name FROM classes WHERE id = ?
[
    "services"
]
DEBUG 23:22:15 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    437
]
DEBUG 23:22:15 cache Key asset_6045 doesn't exist in cache
{
    "key": "asset_6045"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6045
]
DEBUG 23:22:15 cache Key asset_6046 doesn't exist in cache
{
    "key": "asset_6046"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6046
]
DEBUG 23:22:15 cache Key asset_1304 doesn't exist in cache
{
    "key": "asset_1304"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1304
]
DEBUG 23:22:15 doctrine select `partnersBlock` from object_store_services where oo_id = 437
DEBUG 23:22:15 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 437
DEBUG 23:22:15 doctrine select `clientBlock` from object_store_services where oo_id = 437
DEBUG 23:22:15 doctrine select `serviceBarBlock` from object_store_services where oo_id = 437
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    437
]
DEBUG 23:22:15 cache Key object_56 doesn't exist in cache
{
    "key": "object_56"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    56
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    56
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    56
]
DEBUG 23:22:15 cache Key asset_6049 doesn't exist in cache
{
    "key": "asset_6049"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6049
]
DEBUG 23:22:15 cache Key asset_205 doesn't exist in cache
{
    "key": "asset_205"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    205
]
DEBUG 23:22:15 cache Key asset_6048 doesn't exist in cache
{
    "key": "asset_6048"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6048
]
DEBUG 23:22:15 cache Key asset_632 doesn't exist in cache
{
    "key": "asset_632"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    632
]
DEBUG 23:22:15 cache Key asset_1305 doesn't exist in cache
{
    "key": "asset_1305"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1305
]
DEBUG 23:22:15 doctrine select `partnersBlock` from object_store_services where oo_id = 56
DEBUG 23:22:15 cache Key asset_1196 doesn't exist in cache
{
    "key": "asset_1196"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1196
]
DEBUG 23:22:15 cache Key asset_1197 doesn't exist in cache
{
    "key": "asset_1197"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1197
]
DEBUG 23:22:15 cache Key asset_1199 doesn't exist in cache
{
    "key": "asset_1199"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1199
]
DEBUG 23:22:15 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 56
DEBUG 23:22:15 doctrine select `clientBlock` from object_store_services where oo_id = 56
DEBUG 23:22:15 doctrine select `serviceBarBlock` from object_store_services where oo_id = 56
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    56
]
DEBUG 23:22:15 cache Key object_57 doesn't exist in cache
{
    "key": "object_57"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    57
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    57
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    57
]
DEBUG 23:22:15 cache Key asset_6051 doesn't exist in cache
{
    "key": "asset_6051"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6051
]
DEBUG 23:22:15 cache Key asset_209 doesn't exist in cache
{
    "key": "asset_209"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    209
]
DEBUG 23:22:15 cache Key asset_6050 doesn't exist in cache
{
    "key": "asset_6050"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6050
]
DEBUG 23:22:15 cache Key asset_627 doesn't exist in cache
{
    "key": "asset_627"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    627
]
DEBUG 23:22:15 cache Key asset_1306 doesn't exist in cache
{
    "key": "asset_1306"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1306
]
DEBUG 23:22:15 doctrine select `partnersBlock` from object_store_services where oo_id = 57
DEBUG 23:22:15 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 57
DEBUG 23:22:15 doctrine select `clientBlock` from object_store_services where oo_id = 57
DEBUG 23:22:15 doctrine select `serviceBarBlock` from object_store_services where oo_id = 57
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    57
]
DEBUG 23:22:15 cache Key object_436 doesn't exist in cache
{
    "key": "object_436"
}
DEBUG 23:22:15 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    436
]
DEBUG 23:22:15 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    436
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    436
]
DEBUG 23:22:15 cache Key asset_6053 doesn't exist in cache
{
    "key": "asset_6053"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6053
]
DEBUG 23:22:15 cache Key asset_6052 doesn't exist in cache
{
    "key": "asset_6052"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    6052
]
DEBUG 23:22:15 cache Key asset_1303 doesn't exist in cache
{
    "key": "asset_1303"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1303
]
DEBUG 23:22:15 doctrine select `partnersBlock` from object_store_services where oo_id = 436
DEBUG 23:22:15 cache Key asset_929 doesn't exist in cache
{
    "key": "asset_929"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    929
]
DEBUG 23:22:15 cache Key asset_1295 doesn't exist in cache
{
    "key": "asset_1295"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1295
]
DEBUG 23:22:15 cache Key asset_1296 doesn't exist in cache
{
    "key": "asset_1296"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1296
]
DEBUG 23:22:15 cache Key asset_1294 doesn't exist in cache
{
    "key": "asset_1294"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1294
]
DEBUG 23:22:15 cache Key asset_1293 doesn't exist in cache
{
    "key": "asset_1293"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1293
]
DEBUG 23:22:15 cache Key asset_1489 doesn't exist in cache
{
    "key": "asset_1489"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    1489
]
DEBUG 23:22:15 cache Key asset_2007 doesn't exist in cache
{
    "key": "asset_2007"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    2007
]
DEBUG 23:22:15 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 436
DEBUG 23:22:15 doctrine select `clientBlock` from object_store_services where oo_id = 436
DEBUG 23:22:15 cache Key asset_937 doesn't exist in cache
{
    "key": "asset_937"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    937
]
DEBUG 23:22:15 cache Key asset_938 doesn't exist in cache
{
    "key": "asset_938"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    938
]
DEBUG 23:22:15 cache Key asset_939 doesn't exist in cache
{
    "key": "asset_939"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    939
]
DEBUG 23:22:15 cache Key asset_940 doesn't exist in cache
{
    "key": "asset_940"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    940
]
DEBUG 23:22:15 cache Key asset_941 doesn't exist in cache
{
    "key": "asset_941"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    941
]
DEBUG 23:22:15 cache Key asset_942 doesn't exist in cache
{
    "key": "asset_942"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    942
]
DEBUG 23:22:15 cache Key asset_943 doesn't exist in cache
{
    "key": "asset_943"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    943
]
DEBUG 23:22:15 cache Key asset_944 doesn't exist in cache
{
    "key": "asset_944"
}
DEBUG 23:22:15 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    944
]
DEBUG 23:22:15 doctrine select `serviceBarBlock` from object_store_services where oo_id = 436
DEBUG 23:22:15 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    436
]
DEBUG 23:22:15 cache Key document_properties_23 doesn't exist in cache
{
    "key": "document_properties_23"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    23
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    23
]
DEBUG 23:22:15 cache Key document_properties_96 doesn't exist in cache
{
    "key": "document_properties_96"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    96
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    96
]
DEBUG 23:22:15 cache Key document_properties_24 doesn't exist in cache
{
    "key": "document_properties_24"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    24
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    24
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    24
]
DEBUG 23:22:15 cache Key document_90 doesn't exist in cache
{
    "key": "document_90"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    90
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    90
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_85 doesn't exist in cache
{
    "key": "document_85"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    85
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_page.*, tree_locks.locked FROM documents LEFT JOIN documents_page ON documents.id = documents_page.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    85
]
INFO 23:22:15 php User Deprecated: Since pimcore/pimcore 10.6.0: Pimcore\Model\Document\Page::setMetaData is deprecated and will be removed in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:15 cache Key document_properties_90 doesn't exist in cache
{
    "key": "document_properties_90"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1,24) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    90
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    90
]
DEBUG 23:22:15 cache Key document_properties_85 doesn't exist in cache
{
    "key": "document_properties_85"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1,24) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    85
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    85
]
DEBUG 23:22:15 cache Key document_properties_82 doesn't exist in cache
{
    "key": "document_properties_82"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    82
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    82
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    25
]
DEBUG 23:22:15 cache Key document_properties_26 doesn't exist in cache
{
    "key": "document_properties_26"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    26
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    26
]
DEBUG 23:22:15 cache Key document_properties_12 doesn't exist in cache
{
    "key": "document_properties_12"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    12
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    12
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    12
]
DEBUG 23:22:15 cache Key document_13 doesn't exist in cache
{
    "key": "document_13"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    13
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    13
]
DEBUG 23:22:15 cache Key document_14 doesn't exist in cache
{
    "key": "document_14"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    14
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    14
]
DEBUG 23:22:15 cache Key document_properties_13 doesn't exist in cache
{
    "key": "document_properties_13"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1,12) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    13
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    13
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    13
]
DEBUG 23:22:15 cache Key document_15 doesn't exist in cache
{
    "key": "document_15"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    15
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_snippet.*, tree_locks.locked FROM documents LEFT JOIN documents_snippet ON documents.id = documents_snippet.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    15
]
DEBUG 23:22:15 cache Key document_86 doesn't exist in cache
{
    "key": "document_86"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    86
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_snippet.*, tree_locks.locked FROM documents LEFT JOIN documents_snippet ON documents.id = documents_snippet.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    86
]
DEBUG 23:22:15 cache Key document_properties_14 doesn't exist in cache
{
    "key": "document_properties_14"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1,12) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    14
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    14
]
DEBUG 23:22:15 cache Key document_properties_3 doesn't exist in cache
{
    "key": "document_properties_3"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    3
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    3
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    3
]
DEBUG 23:22:15 cache Key document_62 doesn't exist in cache
{
    "key": "document_62"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    62
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    62
]
DEBUG 23:22:15 cache Key document_66 doesn't exist in cache
{
    "key": "document_66"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    66
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    66
]
DEBUG 23:22:15 cache Key document_74 doesn't exist in cache
{
    "key": "document_74"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    74
]
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    74
]
DEBUG 23:22:15 cache Key document_properties_62 doesn't exist in cache
{
    "key": "document_properties_62"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1,3) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    62
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    62
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    62
]
DEBUG 23:22:15 cache Key document_63 doesn't exist in cache
{
    "key": "document_63"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    63
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_snippet.*, tree_locks.locked FROM documents LEFT JOIN documents_snippet ON documents.id = documents_snippet.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    63
]
DEBUG 23:22:15 cache Key document_64 doesn't exist in cache
{
    "key": "document_64"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    64
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_snippet.*, tree_locks.locked FROM documents LEFT JOIN documents_snippet ON documents.id = documents_snippet.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    64
]
DEBUG 23:22:15 cache Key document_properties_66 doesn't exist in cache
{
    "key": "document_properties_66"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1,3) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    66
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    66
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    66
]
DEBUG 23:22:15 cache Key document_67 doesn't exist in cache
{
    "key": "document_67"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    67
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_snippet.*, tree_locks.locked FROM documents LEFT JOIN documents_snippet ON documents.id = documents_snippet.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    67
]
DEBUG 23:22:15 cache Key document_69 doesn't exist in cache
{
    "key": "document_69"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    69
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_snippet.*, tree_locks.locked FROM documents LEFT JOIN documents_snippet ON documents.id = documents_snippet.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    69
]
DEBUG 23:22:15 cache Key document_properties_74 doesn't exist in cache
{
    "key": "document_properties_74"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1,3) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    74
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    74
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    74
]
DEBUG 23:22:15 cache Key document_75 doesn't exist in cache
{
    "key": "document_75"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    75
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_snippet.*, tree_locks.locked FROM documents LEFT JOIN documents_snippet ON documents.id = documents_snippet.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    75
]
DEBUG 23:22:15 cache Key document_properties_87 doesn't exist in cache
{
    "key": "document_properties_87"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    87
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    87
]
DEBUG 23:22:15 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    87
]
DEBUG 23:22:15 cache Key document_88 doesn't exist in cache
{
    "key": "document_88"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    88
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_email.*, tree_locks.locked FROM documents LEFT JOIN documents_email ON documents.id = documents_email.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    88
]
DEBUG 23:22:15 cache Key document_89 doesn't exist in cache
{
    "key": "document_89"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    89
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_email.*, tree_locks.locked FROM documents LEFT JOIN documents_email ON documents.id = documents_email.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    89
]
DEBUG 23:22:15 cache Key document_94 doesn't exist in cache
{
    "key": "document_94"
}
DEBUG 23:22:15 doctrine SELECT documents.*, tree_locks.locked FROM documents LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    94
]
DEBUG 23:22:15 doctrine SELECT documents.*, documents_email.*, tree_locks.locked FROM documents LEFT JOIN documents_email ON documents.id = documents_email.id LEFT JOIN tree_locks ON documents.id = tree_locks.id AND tree_locks.type = 'document' WHERE documents.id = ?
[
    94
]
DEBUG 23:22:15 cache Key document_properties_91 doesn't exist in cache
{
    "key": "document_properties_91"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    91
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    91
]
DEBUG 23:22:15 cache Key document_properties_92 doesn't exist in cache
{
    "key": "document_properties_92"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    92
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    92
]
DEBUG 23:22:15 cache Key document_properties_93 doesn't exist in cache
{
    "key": "document_properties_93"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    93
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    93
]
DEBUG 23:22:15 cache Key document_properties_95 doesn't exist in cache
{
    "key": "document_properties_95"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    95
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    95
]
DEBUG 23:22:15 cache Key document_properties_97 doesn't exist in cache
{
    "key": "document_properties_97"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    97
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    97
]
DEBUG 23:22:15 cache Key document_properties_98 doesn't exist in cache
{
    "key": "document_properties_98"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    98
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    98
]
DEBUG 23:22:15 cache Key document_properties_99 doesn't exist in cache
{
    "key": "document_properties_99"
}
DEBUG 23:22:15 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    99
]
DEBUG 23:22:15 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    99
]
WARNING 23:22:15 cache Failed to save key "nav_79194784086604de5ae31713ba09ce55" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "nav_79194784086604de5ae31713ba09ce55",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_12tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_12\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_13tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_13\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_14tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_14\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_20tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_20\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_23tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_23\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_24tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_24\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_25tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_25\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_26tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_26\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_3tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_3\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_62tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_62\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_66tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_66\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_74tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_74\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_82tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_82\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_85tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_85\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_87tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_87\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_90tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_90\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_91tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_91\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_92tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_92\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_93tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_93\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_95tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_95\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_96tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_96\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_97tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_97\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_98tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_98\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "document_99tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "document_99\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "nav_79194784086604de5ae31713ba09ce55tags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "nav_79194784086604de5ae31713ba09ce55\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "navigationtags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "navigation\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "outputtags" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "output\u0000tags\u0000",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
WARNING 23:22:15 cache Failed to save key "tagsnav_79194784086604de5ae31713ba09ce55" of type array: Redis maxmemory-policy setting "allkeys-lru" is *not* supported by RedisTagAwareAdapter, use "noeviction" or "volatile-*" eviction policies.
{
    "key": "\u0000tags\u0000nav_79194784086604de5ae31713ba09ce55",
    "exception": {},
    "cache-adapter": "Symfony\\Component\\Cache\\Adapter\\RedisTagAwareAdapter"
}
ERROR 23:22:15 cache Failed to add entry nav_79194784086604de5ae31713ba09ce55 to cache. Item size was 19.82 KB
{
    "key": "nav_79194784086604de5ae31713ba09ce55",
    "itemSize": "19.82 KB"
}
DEBUG 23:22:15 doctrine SELECT COUNT(*) FROM object_blogs WHERE (o_id != ? and category__id IN (?) AND object_blogs.o_type IN ('object','folder')) AND object_blogs.o_published = 1
[
    7465,
    451
]
DEBUG 23:22:16 doctrine SELECT object_blogs.o_id as o_id, object_blogs.o_type as o_type FROM object_blogs WHERE (o_id != ? and category__id IN (?) AND object_blogs.o_type IN ('object','folder')) AND object_blogs.o_published = 1 ORDER BY `date` DESC LIMIT 3
[
    7465,
    451
]
DEBUG 23:22:16 cache Key object_31192 doesn't exist in cache
{
    "key": "object_31192"
}
DEBUG 23:22:16 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    31192
]
DEBUG 23:22:16 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    31192
]
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:16 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    31192
]
DEBUG 23:22:16 cache Key asset_5953 doesn't exist in cache
{
    "key": "asset_5953"
}
DEBUG 23:22:16 doctrine SELECT assets.*, tree_locks.locked FROM assets LEFT JOIN tree_locks ON assets.id = tree_locks.id AND tree_locks.type = 'asset' WHERE assets.id = ?
[
    5953
]
DEBUG 23:22:16 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    31192
]
DEBUG 23:22:16 cache Key object_6308 doesn't exist in cache
{
    "key": "object_6308"
}
DEBUG 23:22:16 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    6308
]
DEBUG 23:22:16 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    6308
]
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:16 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    6308
]
DEBUG 23:22:16 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    6308
]
DEBUG 23:22:16 cache Key object_6309 doesn't exist in cache
{
    "key": "object_6309"
}
DEBUG 23:22:16 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    6309
]
DEBUG 23:22:16 doctrine SELECT objects.*, tree_locks.locked as o_locked FROM objects LEFT JOIN tree_locks ON objects.o_id = tree_locks.id AND tree_locks.type = 'object' WHERE o_id = ?
[
    6309
]
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_id" is deprecated, please use "setid" instead. using "seto_id" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_parentId" is deprecated, please use "setparentId" instead. using "seto_parentId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_type" is deprecated, please use "settype" instead. using "seto_type" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_key" is deprecated, please use "setkey" instead. using "seto_key" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_path" is deprecated, please use "setpath" instead. using "seto_path" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_index" is deprecated, please use "setindex" instead. using "seto_index" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_published" is deprecated, please use "setpublished" instead. using "seto_published" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_creationDate" is deprecated, please use "setcreationDate" instead. using "seto_creationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_modificationDate" is deprecated, please use "setmodificationDate" instead. using "seto_modificationDate" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userOwner" is deprecated, please use "setuserOwner" instead. using "seto_userOwner" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_userModification" is deprecated, please use "setuserModification" instead. using "seto_userModification" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_classId" is deprecated, please use "setclassId" instead. using "seto_classId" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_className" is deprecated, please use "setclassName" instead. using "seto_className" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortBy" is deprecated, please use "setchildrenSortBy" instead. using "seto_childrenSortBy" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_childrenSortOrder" is deprecated, please use "setchildrenSortOrder" instead. using "seto_childrenSortOrder" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_versionCount" is deprecated, please use "setversionCount" instead. using "seto_versionCount" wont work in Pimcore 11.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: using "seto_locked" is deprecated, please use "setlocked" instead. using "seto_locked" wont work in Pimcore 11.
{
    "exception": {}
}
DEBUG 23:22:16 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    6309
]
DEBUG 23:22:16 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    6309
]
DEBUG 23:22:16 doctrine SELECT COUNT(*) FROM object_blogcategories WHERE ( object_blogcategories.o_type IN ('object','folder')) AND object_blogcategories.o_published = 1
DEBUG 23:22:16 doctrine SELECT * FROM translations_messages LIMIT 1;
DEBUG 23:22:16 cache Key translation_data_01e5f00fbf5874160f42c8fe5f4fa4ea doesn't exist in cache
{
    "key": "translation_data_01e5f00fbf5874160f42c8fe5f4fa4ea"
}
DEBUG 23:22:16 doctrine SELECT * FROM translations_messages LIMIT 1;
DEBUG 23:22:16 doctrine SELECT * FROM translations_messages WHERE language = ?
[
    "en"
]
DEBUG 23:22:16 cache Key document_target_groups_15 doesn't exist in cache
{
    "key": "document_target_groups_15"
}
DEBUG 23:22:16 doctrine SELECT * FROM documents_editables WHERE documentId = ?
[
    15
]
DEBUG 23:22:16 cache Key document_properties_15 doesn't exist in cache
{
    "key": "document_properties_15"
}
DEBUG 23:22:16 doctrine SELECT * FROM properties WHERE ((cid IN (1,13,12) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    15
]
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: Usage of method Pimcore\Tool\Session::requestHasSessionId is deprecated since version 10.6 and will be removed in Pimcore 11. No alternative given, use Request Session instead.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: Usage of method Pimcore\Tool\Session::getReadOnly is deprecated since version 10.6 and will be removed in Pimcore 11. No alternative given.
{
    "exception": {}
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::stopPropagationCheck".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::stopPropagationCheck"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 23:22:16 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 23:22:16 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 23:22:16 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 23:22:16 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\HardlinkCanonicalListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\HardlinkCanonicalListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSecurityListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSecurityListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleTagManagerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleTagManagerListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleAnalyticsCodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleAnalyticsCodeListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 23:22:16 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 23:22:16 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 23:22:16 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 23:22:16 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 23:22:16 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"
}
CRITICAL 23:22:16 request Uncaught PHP Exception ErrorException: "Notice: file_put_contents(): Write of 78232 bytes failed with errno=28 No space left on device" at /var/www/html/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 172
{
    "exception": {}
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\Session\AdminSessionBagConfigurator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\Session\\AdminSessionBagConfigurator::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 23:22: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 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 23:22: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 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:22:16 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 23:22: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 23:22: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 23:22: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 23:22: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 23:22: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 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 23:22: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 23:22: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 23:22: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 23:22: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"
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: Using the "attributes" field in the link editable is deprecated. The field will be removed in Pimcore 11.0.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: Using the "attributes" field in the link editable is deprecated. The field will be removed in Pimcore 11.0.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: Using the "attributes" field in the link editable is deprecated. The field will be removed in Pimcore 11.0.
{
    "exception": {}
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: Using the "attributes" field in the link editable is deprecated. The field will be removed in Pimcore 11.0.
{
    "exception": {}
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::stopPropagationCheck".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::stopPropagationCheck"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Provider\TwoFactorProviderPreparationListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Provider\\TwoFactorProviderPreparationListener::onKernelResponse"
}
DEBUG 23:22:16 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 23:22:16 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 23:22:16 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 23:22:16 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\HardlinkCanonicalListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\HardlinkCanonicalListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\InternalWysiwygHtmlAttributeFilterListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSecurityListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSecurityListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleTagManagerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleTagManagerListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleAnalyticsCodeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleAnalyticsCodeListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 23:22:16 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 23:22:16 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 23:22:16 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 23:22:16 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 23:22:16 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 23:22:16 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"
}
INFO 23:22:16 php User Deprecated: Since pimcore/pimcore 10.6: The ".container.private.pimcore_admin.security.user_provider" service is deprecated and will be removed in Pimcore 11. Use \Pimcore\Security\User\TokenStorageUserResolver instead.
{
    "exception": {}
}
DEBUG 23:22:16 event Notified event "kernel.terminate" to listener "Pimcore\Bundle\CoreBundle\EventListener\DumpTranslationEntriesListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\DumpTranslationEntriesListener::onKernelTerminate"
}
DEBUG 23:22:16 event Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
WARNING 23:22:16 php Uncaught Notice: file_put_contents(): Write of 78232 bytes failed with errno=28 No space left on device
{
    "exception": {}
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\FullPageCacheListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\FullPageCacheListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\RoutingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\RoutingListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\StaticPageGeneratorListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\StaticPageGeneratorListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\Session\AdminSessionBagConfigurator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\Session\\AdminSessionBagConfigurator::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GoogleSearchConsoleVerificationListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GoogleSearchConsoleVerificationListener::onKernelRequest"
}
DEBUG 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelRequest"
}
DEBUG 23:22: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 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 23:22: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 23:22: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 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\LocaleListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Scheb\TwoFactorBundle\Security\TwoFactor\Event\TwoFactorFormListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Scheb\\TwoFactorBundle\\Security\\TwoFactor\\Event\\TwoFactorFormListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\BlockStateListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\BlockStateListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentMetaDataListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentMetaDataListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\EditmodeListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\EditmodeListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\OutputTimestampListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\OutputTimestampListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 23:22:16 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 23:22:16 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\DocumentFallbackListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\DocumentFallbackListener::onKernelController"
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\ElementListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\ElementListener::onKernelController"
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\Frontend\GlobalTemplateVariablesListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\Frontend\\GlobalTemplateVariablesListener::onKernelController"
}
DEBUG 23:22: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 23:22: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 23:22: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 23:22: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 23:22: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 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 23:22:16 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 23:22: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 23:22: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 23:22: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 23:22: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"
}

Stack Trace

ErrorException
ErrorException:
Notice: file_put_contents(): Write of 78232 bytes failed with errno=28 No space left on device

  at vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:172
  at Symfony\Component\HttpKernel\Profiler\FileProfilerStorage->write()
     (vendor/symfony/http-kernel/Profiler/Profiler.php:101)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (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:97)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (vendor/symfony/http-kernel/Kernel.php:159)
  at Symfony\Component\HttpKernel\Kernel->terminate()
     (public/index.php:41)                
Loading…
Loading the web debug toolbar…
Attempt #
Symfony\Component\VarDumper\Cloner\Data objects are immutable. (500 Internal Server Error)

Symfony Exception

BadMethodCallException

HTTP 500 Internal Server Error

Symfony\Component\VarDumper\Cloner\Data objects are immutable.

Exception

BadMethodCallException

  1.      * @return void
  2.      */
  3.     #[\ReturnTypeWillChange]
  4.     public function offsetSet($key$value)
  5.     {
  6.         throw new \BadMethodCallException(self::class.' objects are immutable.');
  7.     }
  8.     /**
  9.      * @return void
  10.      */
  1.      *
  2.      * @see TraceableEventDispatcher
  3.      */
  4.     public function setCalledListeners(array $listeners)
  5.     {
  6.         $this->data['called_listeners'] = $listeners;
  7.     }
  8.     /**
  9.      * @see TraceableEventDispatcher
  10.      *
  1.     }
  2.     public function lateCollect()
  3.     {
  4.         if ($this->dispatcher instanceof TraceableEventDispatcher) {
  5.             $this->setCalledListeners($this->dispatcher->getCalledListeners($this->currentRequest));
  6.             $this->setNotCalledListeners($this->dispatcher->getNotCalledListeners($this->currentRequest));
  7.             $this->setOrphanedEvents($this->dispatcher->getOrphanedEvents($this->currentRequest));
  8.         }
  9.         $this->data $this->cloneVar($this->data);
  1.     public function saveProfile(Profile $profile)
  2.     {
  3.         // late collect
  4.         foreach ($profile->getCollectors() as $collector) {
  5.             if ($collector instanceof LateDataCollectorInterface) {
  6.                 $collector->lateCollect();
  7.             }
  8.         }
  9.         if (!($ret $this->storage->write($profile)) && null !== $this->logger) {
  10.             $this->logger->warning('Unable to store the profiler information.', ['configured_storage' => \get_class($this->storage)]);
  1.             }
  2.         }
  3.         // save profiles
  4.         foreach ($this->profiles as $request) {
  5.             $this->profiler->saveProfile($this->profiles[$request]);
  6.         }
  7.         $this->profiles = new \SplObjectStorage();
  8.         $this->parents = new \SplObjectStorage();
  9.     }
  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.      * {@inheritdoc}
  3.      */
  4.     public function terminate(Request $requestResponse $response)
  5.     {
  6.         $this->dispatcher->dispatch(new TerminateEvent($this$request$response), KernelEvents::TERMINATE);
  7.     }
  8.     /**
  9.      * @internal
  10.      */
  1.         }
  2.         $response->sendHeaders();
  3.         $response->sendContent();
  4.         $this->terminate($request$response);
  5.     }
  6.     /**
  7.      * Handles a request to convert it to a response.
  8.      *
  1.                         if ($hasRun) {
  2.                             throw $e;
  3.                         }
  4.                         $hasRun true;
  5.                         $kernel->terminateWithException($e$request);
  6.                     };
  7.                 }
  8.             } elseif ($event instanceof ConsoleEvent && $app $event->getCommand()->getApplication()) {
  9.                 $output $event->getOutput();
  10.                 if ($output instanceof ConsoleOutputInterface) {
in /var/www/html/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 616)
  1.             $this->exceptionHandler null;
  2.         }
  3.         try {
  4.             if (null !== $exceptionHandler) {
  5.                 return $exceptionHandler($exception);
  6.             }
  7.             $handlerException $handlerException ?: $exception;
  8.         } catch (\Throwable $handlerException) {
  9.         }
  10.         if ($exception === $handlerException && null === $this->exceptionHandler) {
ErrorHandler->handleException()

Stack Trace

BadMethodCallException
BadMethodCallException:
Symfony\Component\VarDumper\Cloner\Data objects are immutable.

  at /var/www/html/vendor/symfony/var-dumper/Cloner/Data.php:178
  at Symfony\Component\VarDumper\Cloner\Data->offsetSet()
     (/var/www/html/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:79)
  at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->setCalledListeners()
     (/var/www/html/vendor/symfony/http-kernel/DataCollector/EventDataCollector.php:64)
  at Symfony\Component\HttpKernel\DataCollector\EventDataCollector->lateCollect()
     (/var/www/html/vendor/symfony/http-kernel/Profiler/Profiler.php:97)
  at Symfony\Component\HttpKernel\Profiler\Profiler->saveProfile()
     (/var/www/html/vendor/symfony/http-kernel/EventListener/ProfilerListener.php:135)
  at Symfony\Component\HttpKernel\EventListener\ProfilerListener->onKernelTerminate()
     (/var/www/html/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:118)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke()
     (/var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/var/www/html/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/var/www/html/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/var/www/html/vendor/symfony/http-kernel/HttpKernel.php:97)
  at Symfony\Component\HttpKernel\HttpKernel->terminate()
     (/var/www/html/vendor/symfony/http-kernel/HttpKernel.php:124)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/var/www/html/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:131)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/var/www/html/vendor/symfony/error-handler/ErrorHandler.php:616)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()