The key features to consider when selecting a Magento theme for your website
06/09/2023

When it comes to creating an online store, Magento is one of the most popular platforms for ecommerce website development. With its robust features and flexibility, Magento offers a powerful solution for businesses looking to establish their presence in the online marketplace. One of the key aspects of setting up a successful Magento store is choosing the right theme. A well-designed and user-friendly theme not only enhances the visual appeal of your website but also plays a crucial role in improving user experience and driving conversions. In this article, we will discuss the key features to consider when selecting a Magento theme for your website.

1. Responsive Design

In today's mobile-driven world, having a responsive design is essential for any website. A responsive Magento theme ensures that your website looks and functions seamlessly across different devices and screen sizes. This is particularly important as more and more users are accessing the internet and making purchases through their smartphones and tablets. A responsive design not only provides a better user experience but also boosts your SEO efforts, as search engines prioritize mobile-friendly websites in their rankings.

2. Customization Options

Every business has its own unique branding and design requirements. It is important to choose a Magento theme that offers a wide range of customization options, allowing you to tailor the look and feel of your website to align with your brand identity. Look for themes that provide options to customize colors, fonts, layouts, and other design elements. Additionally, consider themes that offer support for custom module development, as this will allow you to add specific functionalities to your website as per your business needs.

3. Performance Optimization

Website performance plays a crucial role in user experience and conversion rates. Slow-loading websites can lead to high bounce rates and abandoned shopping carts. When selecting a Magento theme, make sure it is optimized for performance. Look for themes that use clean code, have minimal page load times, and are optimized for speed. Additionally, consider themes that offer support for caching, compression, and other performance optimization techniques. This will ensure that your website loads quickly and provides a smooth browsing experience for your customers.

4. Compatibility with Magento Versions

Magento regularly releases updates and new versions to enhance the platform's functionality and security. When choosing a Magento theme, it is important to ensure that it is compatible with the version of Magento you are using. Using an outdated or incompatible theme can lead to compatibility issues, security vulnerabilities, and limited access to new features. Before purchasing or installing a theme, check its compatibility with the specific version of Magento you are using. This will ensure that your website remains secure and up-to-date.

5. SEO-Friendly Structure

Search engine optimization (SEO) is crucial for driving organic traffic to your website and improving your online visibility. When evaluating Magento themes, consider their SEO-friendly structure. Look for themes that have clean and optimized code, proper HTML tags, and support for SEO plugins. Additionally, check if the theme allows you to customize meta tags, URLs, and other important SEO elements. A well-optimized theme will help improve your website's search engine rankings and attract more organic traffic.

6. Cross-Browser Compatibility

Your website should look and function consistently across different web browsers. Ensure that the Magento theme you choose is compatible with all major browsers, including Chrome, Firefox, Safari, and Internet Explorer. Test the theme on different browsers to ensure that it renders correctly and all functionalities work as intended. Cross-browser compatibility ensures that your website reaches a wider audience and provides a seamless experience to users, regardless of the browser they are using.

7. Support and Documentation

While selecting a Magento theme, it is important to consider the support and documentation provided by the theme developer. Look for themes that offer comprehensive documentation, including installation instructions, customization guides, and troubleshooting tips. Additionally, check if the theme developer provides reliable and responsive customer support. This will ensure that you have access to assistance whenever you encounter any issues or need help with customizations.

Conclusion

Selecting the right Magento theme for your website is crucial for creating a visually appealing, user-friendly, and high-performing online store. Consider the key features discussed in this article, such as responsive design, customization options, performance optimization, compatibility with Magento versions, SEO-friendly structure, cross-browser compatibility, and support and documentation. By carefully evaluating these features, you can choose a Magento theme that aligns with your business requirements and helps you create a successful ecommerce website.

Read

More Stories


06/09/2023
The role of Magento in enabling personalized product recommendations and upselling.
Read More
06/09/2023
The impact of Magento on customer service and support for ecommerce businesses.
Read More
06/09/2023
The role of Magento in enabling seamless payment processing and integration with payment gateways.
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 76497 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 76497 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 21:26:08 cache Key site_domain_da8f7f6218483699e80b5671075587ef doesn't exist in cache
{
    "key": "site_domain_da8f7f6218483699e80b5671075587ef"
}
DEBUG 21:26:08 doctrine SELECT * FROM sites WHERE mainDomain = ? OR domains LIKE ?
[
    "www.centricdxb.com",
    "%\"www.centricdxb.com\"%"
]
DEBUG 21:26:08 doctrine SELECT id,domains FROM sites
DEBUG 21:26:08 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/magento/the-key- [...]",
    "sourcePathQuery": "/insights/magento/the-key- [...]",
    "sourceEntireUri": "https://www.centricdxb.com [...]",
    "typePath": "path",
    "typePathQuery": "path_query",
    "typeEntireUri": "entire_uri",
    "typeAuto": "auto_create"
}
DEBUG 21:26:08 cache Key system_route_redirect doesn't exist in cache
{
    "key": "system_route_redirect"
}
DEBUG 21:26:08 doctrine INSERT INTO lock_keys (key_id, key_token, key_expiration) VALUES (?, ?, UNIX_TIMESTAMP() + 300)
[
    "8af919885c2e7d00208f20a73f [...]",
    "x5oxHUuuF+gnFvf0q5gqi4kCOY [...]"
]
DEBUG 21:26:08 app Successfully acquired the "{resource}" lock.
{
    "resource": {}
}
DEBUG 21:26:08 doctrine UPDATE lock_keys SET key_expiration = UNIX_TIMESTAMP() + ?, key_token = ? WHERE key_id = ? AND (key_token = ? OR key_expiration <= UNIX_TIMESTAMP())
[
    300,
    "x5oxHUuuF+gnFvf0q5gqi4kCOY [...]",
    "8af919885c2e7d00208f20a73f [...]",
    "x5oxHUuuF+gnFvf0q5gqi4kCOY [...]"
]
DEBUG 21:26:08 doctrine SELECT 1 FROM lock_keys WHERE key_id = ? AND key_token = ? AND key_expiration > UNIX_TIMESTAMP()
[
    "8af919885c2e7d00208f20a73f [...]",
    "x5oxHUuuF+gnFvf0q5gqi4kCOY [...]"
]
DEBUG 21:26:08 app Expiration defined for "{resource}" lock for "300" seconds.
{
    "resource": {},
    "ttl": 300
}
DEBUG 21:26:08 cache Key system_route_redirect doesn't exist in cache
{
    "key": "system_route_redirect"
}
DEBUG 21:26:08 doctrine SELECT id FROM redirects WHERE active = 1 AND regex = 1 ORDER BY `priority` DESC
WARNING 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Failed to add entry system_route_redirect to cache. Item size was 6 B
{
    "key": "system_route_redirect",
    "itemSize": "6 B"
}
DEBUG 21:26:08 doctrine DELETE FROM lock_keys WHERE key_id = ? AND key_token = ?
[
    "8af919885c2e7d00208f20a73f [...]",
    "x5oxHUuuF+gnFvf0q5gqi4kCOY [...]"
]
DEBUG 21:26:08 doctrine SELECT 1 FROM lock_keys WHERE key_id = ? AND key_token = ? AND key_expiration > UNIX_TIMESTAMP()
[
    "8af919885c2e7d00208f20a73f [...]",
    "x5oxHUuuF+gnFvf0q5gqi4kCOY [...]"
]
DEBUG 21:26:08 doctrine SELECT * FROM settings_store WHERE id = :id AND scope = :scope
{
    "id": "reports",
    "scope": "pimcore"
}
INFO 21:26:08 request Matched route "insights_category_detail".
{
    "route": "insights_category_detail",
    "route_parameters": {
        "_route": "insights_category_detail",
        "_controller": "App\\Controller\\BlogController::blogDetailAction",
        "category": "magento",
        "url": "the-key-features-to-consider-when-selecting-a-magento-theme-for-your-website"
    },
    "request_uri": "https://www.centricdxb.com/insights/magento/the-key-features-to-consider-when-selecting-a-magento-theme-for-your-website",
    "method": "GET"
}
DEBUG 21:26:08 app Resolved pimcore context for path /insights/magento/the-key-features-to-consider-when-selecting-a-magento-theme-for-your-website to default
{
    "path": "/insights/magento/the-key-features-to-consider-when-selecting-a-magento-theme-for-your-website",
    "context": "default"
}
DEBUG 21:26:08 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "the-key-features-to-consid [...]",
    "path": "/insights/magento/"
}
DEBUG 21:26:08 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/insights/magento/the-key- [...]"
}
DEBUG 21:26:08 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "magento",
    "path": "/insights/"
}
DEBUG 21:26:08 doctrine SELECT id FROM documents_page WHERE prettyUrl = :prettyUrl
{
    "prettyUrl": "/insights/magento"
}
DEBUG 21:26:08 doctrine SELECT id FROM documents WHERE path = BINARY :path AND `key` = BINARY :key
{
    "key": "insights",
    "path": "/"
}
DEBUG 21:26:08 cache Key document_25 doesn't exist in cache
{
    "key": "document_25"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_properties_25 doesn't exist in cache
{
    "key": "document_properties_25"
}
DEBUG 21:26:08 cache Key document_1 doesn't exist in cache
{
    "key": "document_1"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    25
]
DEBUG 21:26:08 doctrine SELECT id FROM targeting_target_groups UNION SELECT id FROM targeting_rules LIMIT 1
INFO 21:26:08 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": {}
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT id FROM targeting_rules WHERE active = 1 ORDER BY `prio` ASC
DEBUG 21:26:08 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 21:26:08 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:26:08 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 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 21:26:08 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 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\Session\AdminSessionBagConfigurator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\Session\\AdminSessionBagConfigurator::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:26:08 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 21:26:08 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 21:26:08 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 21:26:08 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 21:26:08 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:26:08 cache Key document_target_groups_25 doesn't exist in cache
{
    "key": "document_target_groups_25"
}
DEBUG 21:26:08 doctrine SELECT * FROM documents_editables WHERE documentId = ?
[
    25
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:26:08 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:26:08 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:26:08 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:26:08 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:26:08 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 21:26:08 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 21:26:08 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT name FROM classes WHERE id = ?
[
    "blogcategories"
]
DEBUG 21:26:08 doctrine SELECT object_blogcategories.o_id as o_id, object_blogcategories.o_type as o_type FROM object_blogcategories WHERE (`url` = 'magento' AND object_blogcategories.o_type IN ('object','folder')) AND object_blogcategories.o_published = 1 LIMIT 1
DEBUG 21:26:08 cache Key object_454 doesn't exist in cache
{
    "key": "object_454"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    454
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    454
]
DEBUG 21:26:08 cache Key asset_1384 doesn't exist in cache
{
    "key": "asset_1384"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    454
]
DEBUG 21:26:08 doctrine SELECT name FROM classes WHERE id = ?
[
    "blogs"
]
DEBUG 21:26:08 doctrine SELECT object_blogs.o_id as o_id, object_blogs.o_type as o_type FROM object_blogs WHERE (`url` = 'the-key-features-to-consider-when-selecting-a-magento-theme-for-your-website' AND object_blogs.o_type IN ('object','folder')) AND object_blogs.o_published = 1 LIMIT 1
DEBUG 21:26:08 cache Key object_13199 doesn't exist in cache
{
    "key": "object_13199"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    13199
]
DEBUG 21:26:08 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 = ?
[
    13199
]
INFO 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    13199
]
DEBUG 21:26:08 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    13199
]
DEBUG 21:26:08 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 21:26:08 cache Key object_20780 doesn't exist in cache
{
    "key": "object_20780"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    20780
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    20780
]
DEBUG 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    20780
]
DEBUG 21:26:08 cache Key object_806 doesn't exist in cache
{
    "key": "object_806"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    806
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    806
]
DEBUG 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    806
]
DEBUG 21:26:08 cache Key object_462 doesn't exist in cache
{
    "key": "object_462"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    462
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    462
]
DEBUG 21:26:08 cache Key asset_1398 doesn't exist in cache
{
    "key": "asset_1398"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    462
]
DEBUG 21:26:08 cache Key object_461 doesn't exist in cache
{
    "key": "object_461"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    461
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    461
]
DEBUG 21:26:08 cache Key asset_1391 doesn't exist in cache
{
    "key": "asset_1391"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    461
]
DEBUG 21:26:08 cache Key object_460 doesn't exist in cache
{
    "key": "object_460"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    460
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    460
]
DEBUG 21:26:08 cache Key asset_1390 doesn't exist in cache
{
    "key": "asset_1390"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    460
]
DEBUG 21:26:08 cache Key object_459 doesn't exist in cache
{
    "key": "object_459"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    459
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    459
]
DEBUG 21:26:08 cache Key asset_1389 doesn't exist in cache
{
    "key": "asset_1389"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    459
]
DEBUG 21:26:08 cache Key object_458 doesn't exist in cache
{
    "key": "object_458"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    458
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    458
]
DEBUG 21:26:08 cache Key asset_1388 doesn't exist in cache
{
    "key": "asset_1388"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    458
]
DEBUG 21:26:08 cache Key object_457 doesn't exist in cache
{
    "key": "object_457"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    457
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    457
]
DEBUG 21:26:08 cache Key asset_1387 doesn't exist in cache
{
    "key": "asset_1387"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    457
]
DEBUG 21:26:08 cache Key object_456 doesn't exist in cache
{
    "key": "object_456"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    456
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    456
]
DEBUG 21:26:08 cache Key asset_1386 doesn't exist in cache
{
    "key": "asset_1386"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    456
]
DEBUG 21:26:08 cache Key object_455 doesn't exist in cache
{
    "key": "object_455"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    455
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    455
]
DEBUG 21:26:08 cache Key asset_1385 doesn't exist in cache
{
    "key": "asset_1385"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    455
]
DEBUG 21:26:08 cache Key object_453 doesn't exist in cache
{
    "key": "object_453"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    453
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    453
]
DEBUG 21:26:08 cache Key asset_1383 doesn't exist in cache
{
    "key": "asset_1383"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    453
]
DEBUG 21:26:08 cache Key object_452 doesn't exist in cache
{
    "key": "object_452"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    452
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    452
]
DEBUG 21:26:08 cache Key asset_1397 doesn't exist in cache
{
    "key": "asset_1397"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    452
]
DEBUG 21:26:08 cache Key object_451 doesn't exist in cache
{
    "key": "object_451"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    451
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    451
]
DEBUG 21:26:08 cache Key asset_1381 doesn't exist in cache
{
    "key": "asset_1381"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    451
]
DEBUG 21:26:08 cache Key object_450 doesn't exist in cache
{
    "key": "object_450"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    450
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    450
]
DEBUG 21:26:08 cache Key asset_1382 doesn't exist in cache
{
    "key": "asset_1382"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    450
]
DEBUG 21:26:08 cache Key object_449 doesn't exist in cache
{
    "key": "object_449"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    449
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    449
]
DEBUG 21:26:08 cache Key asset_1380 doesn't exist in cache
{
    "key": "asset_1380"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    449
]
DEBUG 21:26:08 cache Key object_448 doesn't exist in cache
{
    "key": "object_448"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    448
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_blogcategories WHERE oo_id = ?
[
    448
]
DEBUG 21:26:08 cache Key asset_1299 doesn't exist in cache
{
    "key": "asset_1299"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_1379 doesn't exist in cache
{
    "key": "asset_1379"
}
DEBUG 21:26:08 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 21:26:08 doctrine SELECT * FROM object_relations_blogcategories WHERE src_id = ?
[
    448
]
DEBUG 21:26:08 cache Key nav_79194784086604de5ae31713ba09ce55 doesn't exist in cache
{
    "key": "nav_79194784086604de5ae31713ba09ce55"
}
DEBUG 21:26:08 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    1
]
DEBUG 21:26:08 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    1
]
DEBUG 21:26:08 cache Key document_20 doesn't exist in cache
{
    "key": "document_20"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_23 doesn't exist in cache
{
    "key": "document_23"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_96 doesn't exist in cache
{
    "key": "document_96"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_24 doesn't exist in cache
{
    "key": "document_24"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 cache Key document_82 doesn't exist in cache
{
    "key": "document_82"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_26 doesn't exist in cache
{
    "key": "document_26"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_12 doesn't exist in cache
{
    "key": "document_12"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 cache Key document_3 doesn't exist in cache
{
    "key": "document_3"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 cache Key document_87 doesn't exist in cache
{
    "key": "document_87"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 cache Key document_91 doesn't exist in cache
{
    "key": "document_91"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_92 doesn't exist in cache
{
    "key": "document_92"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_93 doesn't exist in cache
{
    "key": "document_93"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_95 doesn't exist in cache
{
    "key": "document_95"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_97 doesn't exist in cache
{
    "key": "document_97"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_98 doesn't exist in cache
{
    "key": "document_98"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key document_99 doesn't exist in cache
{
    "key": "document_99"
}
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT id FROM sites ORDER BY (SELECT LENGTH(path) FROM documents WHERE documents.id = sites.rootId) DESC
DEBUG 21:26:08 cache Key document_properties_20 doesn't exist in cache
{
    "key": "document_properties_20"
}
DEBUG 21:26:08 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    20
]
DEBUG 21:26:08 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    20
]
DEBUG 21:26:08 cache Key object_42 doesn't exist in cache
{
    "key": "object_42"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    42
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 cache Key object_437 doesn't exist in cache
{
    "key": "object_437"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    437
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT name FROM classes WHERE id = ?
[
    "services"
]
DEBUG 21:26:08 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    437
]
DEBUG 21:26:08 cache Key asset_6045 doesn't exist in cache
{
    "key": "asset_6045"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_6046 doesn't exist in cache
{
    "key": "asset_6046"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_1304 doesn't exist in cache
{
    "key": "asset_1304"
}
DEBUG 21:26:08 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 21:26:08 doctrine select `partnersBlock` from object_store_services where oo_id = 437
DEBUG 21:26:08 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 437
DEBUG 21:26:08 doctrine select `clientBlock` from object_store_services where oo_id = 437
DEBUG 21:26:08 doctrine select `serviceBarBlock` from object_store_services where oo_id = 437
DEBUG 21:26:08 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    437
]
DEBUG 21:26:08 cache Key object_56 doesn't exist in cache
{
    "key": "object_56"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    56
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    56
]
DEBUG 21:26:08 cache Key asset_6049 doesn't exist in cache
{
    "key": "asset_6049"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_205 doesn't exist in cache
{
    "key": "asset_205"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_6048 doesn't exist in cache
{
    "key": "asset_6048"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_632 doesn't exist in cache
{
    "key": "asset_632"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_1305 doesn't exist in cache
{
    "key": "asset_1305"
}
DEBUG 21:26:08 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 21:26:08 doctrine select `partnersBlock` from object_store_services where oo_id = 56
DEBUG 21:26:08 cache Key asset_1196 doesn't exist in cache
{
    "key": "asset_1196"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_1197 doesn't exist in cache
{
    "key": "asset_1197"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_1199 doesn't exist in cache
{
    "key": "asset_1199"
}
DEBUG 21:26:08 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 21:26:08 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 56
DEBUG 21:26:08 doctrine select `clientBlock` from object_store_services where oo_id = 56
DEBUG 21:26:08 doctrine select `serviceBarBlock` from object_store_services where oo_id = 56
DEBUG 21:26:08 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    56
]
DEBUG 21:26:08 cache Key object_57 doesn't exist in cache
{
    "key": "object_57"
}
DEBUG 21:26:08 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    57
]
DEBUG 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 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 21:26:08 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    57
]
DEBUG 21:26:08 cache Key asset_6051 doesn't exist in cache
{
    "key": "asset_6051"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_209 doesn't exist in cache
{
    "key": "asset_209"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_6050 doesn't exist in cache
{
    "key": "asset_6050"
}
DEBUG 21:26:08 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 21:26:08 cache Key asset_627 doesn't exist in cache
{
    "key": "asset_627"
}
DEBUG 21:26:08 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 21:26:09 cache Key asset_1306 doesn't exist in cache
{
    "key": "asset_1306"
}
DEBUG 21:26:09 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 21:26:09 doctrine select `partnersBlock` from object_store_services where oo_id = 57
DEBUG 21:26:09 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 57
DEBUG 21:26:09 doctrine select `clientBlock` from object_store_services where oo_id = 57
DEBUG 21:26:09 doctrine select `serviceBarBlock` from object_store_services where oo_id = 57
DEBUG 21:26:09 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    57
]
DEBUG 21:26:09 cache Key object_436 doesn't exist in cache
{
    "key": "object_436"
}
DEBUG 21:26:09 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    436
]
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 doctrine SELECT * FROM object_store_services WHERE oo_id = ?
[
    436
]
DEBUG 21:26:09 cache Key asset_6053 doesn't exist in cache
{
    "key": "asset_6053"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_6052 doesn't exist in cache
{
    "key": "asset_6052"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_1303 doesn't exist in cache
{
    "key": "asset_1303"
}
DEBUG 21:26:09 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 21:26:09 doctrine select `partnersBlock` from object_store_services where oo_id = 436
DEBUG 21:26:09 cache Key asset_929 doesn't exist in cache
{
    "key": "asset_929"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_1295 doesn't exist in cache
{
    "key": "asset_1295"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_1296 doesn't exist in cache
{
    "key": "asset_1296"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_1294 doesn't exist in cache
{
    "key": "asset_1294"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_1293 doesn't exist in cache
{
    "key": "asset_1293"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_1489 doesn't exist in cache
{
    "key": "asset_1489"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_2007 doesn't exist in cache
{
    "key": "asset_2007"
}
DEBUG 21:26:09 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 21:26:09 doctrine select `whyChooseUsBlock` from object_store_services where oo_id = 436
DEBUG 21:26:09 doctrine select `clientBlock` from object_store_services where oo_id = 436
DEBUG 21:26:09 cache Key asset_937 doesn't exist in cache
{
    "key": "asset_937"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_938 doesn't exist in cache
{
    "key": "asset_938"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_939 doesn't exist in cache
{
    "key": "asset_939"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_940 doesn't exist in cache
{
    "key": "asset_940"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_941 doesn't exist in cache
{
    "key": "asset_941"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_942 doesn't exist in cache
{
    "key": "asset_942"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_943 doesn't exist in cache
{
    "key": "asset_943"
}
DEBUG 21:26:09 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 21:26:09 cache Key asset_944 doesn't exist in cache
{
    "key": "asset_944"
}
DEBUG 21:26:09 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 21:26:09 doctrine select `serviceBarBlock` from object_store_services where oo_id = 436
DEBUG 21:26:09 doctrine SELECT * FROM object_relations_services WHERE src_id = ?
[
    436
]
DEBUG 21:26:09 cache Key document_properties_23 doesn't exist in cache
{
    "key": "document_properties_23"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    23
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    23
]
DEBUG 21:26:09 cache Key document_properties_96 doesn't exist in cache
{
    "key": "document_properties_96"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    96
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    96
]
DEBUG 21:26:09 cache Key document_properties_24 doesn't exist in cache
{
    "key": "document_properties_24"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    24
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    24
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    24
]
DEBUG 21:26:09 cache Key document_90 doesn't exist in cache
{
    "key": "document_90"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 cache Key document_85 doesn't exist in cache
{
    "key": "document_85"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_90 doesn't exist in cache
{
    "key": "document_properties_90"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,24) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    90
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    90
]
DEBUG 21:26:09 cache Key document_properties_85 doesn't exist in cache
{
    "key": "document_properties_85"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,24) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    85
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    85
]
DEBUG 21:26:09 cache Key document_properties_82 doesn't exist in cache
{
    "key": "document_properties_82"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    82
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    82
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    25
]
DEBUG 21:26:09 cache Key document_properties_26 doesn't exist in cache
{
    "key": "document_properties_26"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    26
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    26
]
DEBUG 21:26:09 cache Key document_properties_12 doesn't exist in cache
{
    "key": "document_properties_12"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    12
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    12
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    12
]
DEBUG 21:26:09 cache Key document_13 doesn't exist in cache
{
    "key": "document_13"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_14 doesn't exist in cache
{
    "key": "document_14"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_13 doesn't exist in cache
{
    "key": "document_properties_13"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,12) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    13
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    13
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    13
]
DEBUG 21:26:09 cache Key document_15 doesn't exist in cache
{
    "key": "document_15"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_86 doesn't exist in cache
{
    "key": "document_86"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_14 doesn't exist in cache
{
    "key": "document_properties_14"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,12) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    14
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    14
]
DEBUG 21:26:09 cache Key document_properties_3 doesn't exist in cache
{
    "key": "document_properties_3"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    3
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    3
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    3
]
DEBUG 21:26:09 cache Key document_62 doesn't exist in cache
{
    "key": "document_62"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_66 doesn't exist in cache
{
    "key": "document_66"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_74 doesn't exist in cache
{
    "key": "document_74"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_62 doesn't exist in cache
{
    "key": "document_properties_62"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,3) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    62
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    62
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    62
]
DEBUG 21:26:09 cache Key document_63 doesn't exist in cache
{
    "key": "document_63"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_64 doesn't exist in cache
{
    "key": "document_64"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_66 doesn't exist in cache
{
    "key": "document_properties_66"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,3) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    66
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    66
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    66
]
DEBUG 21:26:09 cache Key document_67 doesn't exist in cache
{
    "key": "document_67"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_69 doesn't exist in cache
{
    "key": "document_69"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_74 doesn't exist in cache
{
    "key": "document_properties_74"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,3) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    74
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    74
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    74
]
DEBUG 21:26:09 cache Key document_75 doesn't exist in cache
{
    "key": "document_75"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_87 doesn't exist in cache
{
    "key": "document_properties_87"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    87
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    87
]
DEBUG 21:26:09 doctrine SELECT documents.id, documents.type FROM documents WHERE (parentId = ?) AND published = 1 ORDER BY `index` ASC
[
    87
]
DEBUG 21:26:09 cache Key document_88 doesn't exist in cache
{
    "key": "document_88"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_89 doesn't exist in cache
{
    "key": "document_89"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_94 doesn't exist in cache
{
    "key": "document_94"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 cache Key document_properties_91 doesn't exist in cache
{
    "key": "document_properties_91"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    91
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    91
]
DEBUG 21:26:09 cache Key document_properties_92 doesn't exist in cache
{
    "key": "document_properties_92"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    92
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    92
]
DEBUG 21:26:09 cache Key document_properties_93 doesn't exist in cache
{
    "key": "document_properties_93"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    93
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    93
]
DEBUG 21:26:09 cache Key document_properties_95 doesn't exist in cache
{
    "key": "document_properties_95"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    95
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    95
]
DEBUG 21:26:09 cache Key document_properties_97 doesn't exist in cache
{
    "key": "document_properties_97"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    97
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    97
]
DEBUG 21:26:09 cache Key document_properties_98 doesn't exist in cache
{
    "key": "document_properties_98"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    98
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    98
]
DEBUG 21:26:09 cache Key document_properties_99 doesn't exist in cache
{
    "key": "document_properties_99"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    99
]
DEBUG 21:26:09 doctrine SELECT id FROM documents d WHERE parentId = ? AND published = 1 LIMIT 1
[
    99
]
WARNING 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 cache Failed to add entry nav_79194784086604de5ae31713ba09ce55 to cache. Item size was 19.82 KB
{
    "key": "nav_79194784086604de5ae31713ba09ce55",
    "itemSize": "19.82 KB"
}
DEBUG 21:26:09 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
[
    13199,
    454
]
DEBUG 21:26:09 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
[
    13199,
    454
]
DEBUG 21:26:09 cache Key object_12014 doesn't exist in cache
{
    "key": "object_12014"
}
DEBUG 21:26:09 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    12014
]
DEBUG 21:26:09 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 = ?
[
    12014
]
INFO 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    12014
]
DEBUG 21:26:09 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    12014
]
DEBUG 21:26:09 cache Key object_12015 doesn't exist in cache
{
    "key": "object_12015"
}
DEBUG 21:26:09 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    12015
]
DEBUG 21:26:09 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 = ?
[
    12015
]
INFO 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    12015
]
DEBUG 21:26:09 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    12015
]
DEBUG 21:26:09 cache Key object_12016 doesn't exist in cache
{
    "key": "object_12016"
}
DEBUG 21:26:09 doctrine SELECT o_type,o_className,o_classId FROM objects WHERE o_id = ?
[
    12016
]
DEBUG 21:26:09 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 = ?
[
    12016
]
INFO 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 doctrine SELECT * FROM object_store_blogs WHERE oo_id = ?
[
    12016
]
DEBUG 21:26:09 doctrine SELECT * FROM object_relations_blogs WHERE src_id = ?
[
    12016
]
DEBUG 21:26:09 doctrine SELECT COUNT(*) FROM object_blogcategories WHERE ( object_blogcategories.o_type IN ('object','folder')) AND object_blogcategories.o_published = 1
DEBUG 21:26:09 doctrine SELECT * FROM translations_messages LIMIT 1;
DEBUG 21:26:09 cache Key translation_data_01e5f00fbf5874160f42c8fe5f4fa4ea doesn't exist in cache
{
    "key": "translation_data_01e5f00fbf5874160f42c8fe5f4fa4ea"
}
DEBUG 21:26:09 doctrine SELECT * FROM translations_messages LIMIT 1;
DEBUG 21:26:09 doctrine SELECT * FROM translations_messages WHERE language = ?
[
    "en"
]
DEBUG 21:26:09 cache Key document_target_groups_15 doesn't exist in cache
{
    "key": "document_target_groups_15"
}
DEBUG 21:26:09 doctrine SELECT * FROM documents_editables WHERE documentId = ?
[
    15
]
DEBUG 21:26:09 cache Key document_properties_15 doesn't exist in cache
{
    "key": "document_properties_15"
}
DEBUG 21:26:09 doctrine SELECT * FROM properties WHERE ((cid IN (1,13,12) AND inheritable = 1) OR cid = ? ) AND ctype='document'
[
    15
]
INFO 21:26:09 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": {}
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSecurityListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSecurityListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 request Uncaught PHP Exception ErrorException: "Notice: file_put_contents(): Write of 76497 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 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\Session\AdminSessionBagConfigurator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\Session\\AdminSessionBagConfigurator::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:26:09 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseHeaderListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\ResponseStackListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\ResponseStackListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreHeaderListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSecurityListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSecurityListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\HttpCacheListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\HttpCacheListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Bundle\AdminBundle\EventListener\EnablePreviewTimeSliderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\EnablePreviewTimeSliderListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Nelmio\CorsBundle\EventListener\CacheableResponseVaryListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CacheableResponseVaryListener::onResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.response" to listener "Pimcore\Targeting\EventListener\ToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Pimcore\\Targeting\\EventListener\\ToolbarListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 21:26:09 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\StreamedResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\StreamedResponseListener::onKernelResponse"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.terminate" to listener "Pimcore\Bundle\CoreBundle\EventListener\DumpTranslationEntriesListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\DumpTranslationEntriesListener::onKernelTerminate"
}
DEBUG 21:26:09 event Notified event "kernel.terminate" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelTerminate".
{
    "event": "kernel.terminate",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelTerminate"
}
WARNING 21:26:09 php Uncaught Notice: file_put_contents(): Write of 76497 bytes failed with errno=28 No space left on device
{
    "exception": {}
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\MaintenancePageListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\MaintenancePageListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CustomAdminEntryPointCheckListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CustomAdminEntryPointCheckListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Nelmio\CorsBundle\EventListener\CorsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Nelmio\\CorsBundle\\EventListener\\CorsListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingSessionBagListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\Session\AdminSessionBagConfigurator::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\Session\\AdminSessionBagConfigurator::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminSessionBagListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminSessionBagListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\PimcoreContextListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\PimcoreContextListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\CsrfProtectionListener::handleRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\CsrfProtectionListener::handleRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Targeting\EventListener\TargetingListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Targeting\\EventListener\\TargetingListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\TranslationDebugListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\TranslationDebugListener::onKernelRequest"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UserPerspectiveListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UserPerspectiveListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\AdminBundle\EventListener\UsageStatisticsListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\UsageStatisticsListener::onKernelRequest"
}
DEBUG 21:26:09 event Notified event "kernel.request" to listener "Pimcore\Bundle\CoreBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.request",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 21:26:09 init Resolved editmode to false
{
    "editmode": "false",
    "params": {
        "param": false,
        "adminRequest": false,
        "user": false
    }
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 21:26:09 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ControllerListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\ParamConverterListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\HttpCacheListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Pimcore\Bundle\CoreBundle\EventListener\EventedControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\CoreBundle\\EventListener\\EventedControllerListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Pimcore\Bundle\AdminBundle\EventListener\AdminAuthenticationDoubleCheckListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Pimcore\\Bundle\\AdminBundle\\EventListener\\AdminAuthenticationDoubleCheckListener::onKernelController"
}
DEBUG 21:26:09 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sensio\\Bundle\\FrameworkExtraBundle\\EventListener\\TemplateListener::onKernelController"
}
DEBUG 21:26:09 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 21:26:09 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 21:26:09 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 76497 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()