Error 404 Not Found

GET https://www.parfum.harmatgabor.eu/media/cache/resolve/fb_og_image/uploads/media/3/8/4/4/logo-final-300.png

Exceptions

Source image for path "uploads/media/3/8/4/4/logo-final-300.png" could not be found

Exceptions 2

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

Show exception properties
Symfony\Component\HttpKernel\Exception\NotFoundHttpException {#2261
  -statusCode: 404
  -headers: []
}
  1.         } catch (NotLoadableException $exception) {
  2.             if (null !== $this->dataManager->getDefaultImageUrl($filter)) {
  3.                 return new RedirectResponse($this->dataManager->getDefaultImageUrl($filter));
  4.             }
  5.             throw new NotFoundHttpException(sprintf('Source image for path "%s" could not be found'$path), $exception);
  6.         } catch (NonExistingFilterException $exception) {
  7.             throw new NotFoundHttpException(sprintf('Requested non-existing filter "%s"'$filter), $exception);
  8.         } catch (RuntimeException $exception) {
  9.             throw new \RuntimeException(vsprintf('Unable to create image for path "%s" and filter "%s". Message was "%s"', [$hash sprintf('%s/%s'$hash$path) : $path$filter$exception->getMessage()]), 0$exception);
  10.         }
  1.     public function filterAction(Request $request$path$filter)
  2.     {
  3.         $path PathHelper::urlPathToFilePath($path);
  4.         $resolver $request->get('resolver');
  5.         return $this->createRedirectResponse(function () use ($path$filter$resolver$request) {
  6.             return $this->filterService->getUrlOfFilteredImage(
  7.                 $path,
  8.                 $filter,
  9.                 $resolver,
  10.                 $this->isWebpSupported($request)
in vendor/symfony/http-kernel/HttpKernel.php -> filterAction (line 181)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/parfum/releases/84/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Liip\ImagineBundle\Exception\Binary\Loader\ NotLoadableException

Source image not resolvable "uploads/media/3/8/4/4/logo-final-300.png" in root path(s) "/var/www/parfum/shared/public:/var/www/parfum/releases/84/public"

  1.         if (null !== $absolute $this->locateUsingRootPathsSearch($path)) {
  2.             return $this->sanitizeAbsolutePath($absolute);
  3.         }
  4.         throw new NotLoadableException(sprintf('Source image not resolvable "%s" in root path(s) "%s"'$pathimplode(':'$this->roots)));
  5.     }
  6.     protected function generateAbsolutePath(string $rootstring $path): ?string
  7.     {
  8.         if (false !== $absolute realpath($root.DIRECTORY_SEPARATOR.$path)) {
  1.         $this->locator $locator;
  2.     }
  3.     public function find($path)
  4.     {
  5.         $path $this->locator->locate($path);
  6.         $mimeType $this->mimeTypeGuesser instanceof DeprecatedMimeTypeGuesserInterface $this->mimeTypeGuesser->guess($path) : $this->mimeTypeGuesser->guessMimeType($path);
  7.         $extension $this->getExtension($mimeType);
  8.         return new FileBinary($path$mimeType$extension);
  9.     }
  1.      */
  2.     public function find($filter$path)
  3.     {
  4.         $loader $this->getLoader($filter);
  5.         $binary $loader->find($path);
  6.         if (!$binary instanceof BinaryInterface) {
  7.             $mimeType $this->mimeTypeGuesser->guess($binary);
  8.             $extension $this->getExtension($mimeType);
  9.             $binary = new Binary(
  1.     /**
  2.      * @throws NonExistingFilterException
  3.      */
  4.     private function createFilteredBinary(FilterPathContainer $filterPathContainerstring $filter): BinaryInterface
  5.     {
  6.         $binary $this->dataManager->find($filter$filterPathContainer->getSource());
  7.         try {
  8.             return $this->filterManager->applyFilter($binary$filter$filterPathContainer->getOptions());
  9.         } catch (NonExistingFilterException $e) {
  10.             $this->logger->debug(sprintf(
in vendor/liip/imagine-bundle/Service/FilterService.php -> createFilteredBinary (line 205)
  1.         ?string $resolver null,
  2.         bool $forced false
  3.     ): bool {
  4.         if ($forced || !$this->cacheManager->isStored($filterPathContainer->getTarget(), $filter$resolver)) {
  5.             $this->cacheManager->store(
  6.                 $this->createFilteredBinary($filterPathContainer$filter),
  7.                 $filterPathContainer->getTarget(),
  8.                 $filter,
  9.                 $resolver
  10.             );
in vendor/liip/imagine-bundle/Service/FilterService.php -> warmUpCacheFilterPathContainer (line 123)
  1.      * @return string
  2.      */
  3.     public function getUrlOfFilteredImage($path$filter$resolver nullbool $webpSupported false)
  4.     {
  5.         foreach ($this->buildFilterPathContainers($path) as $filterPathContainer) {
  6.             $this->warmUpCacheFilterPathContainer($filterPathContainer$filter$resolver);
  7.         }
  8.         return $this->resolveFilterPathContainer(new FilterPathContainer($path), $filter$resolver$webpSupported);
  9.     }
  1.     {
  2.         $path PathHelper::urlPathToFilePath($path);
  3.         $resolver $request->get('resolver');
  4.         return $this->createRedirectResponse(function () use ($path$filter$resolver$request) {
  5.             return $this->filterService->getUrlOfFilteredImage(
  6.                 $path,
  7.                 $filter,
  8.                 $resolver,
  9.                 $this->isWebpSupported($request)
  10.             );
in vendor/liip/imagine-bundle/Controller/ImagineController.php -> Liip\ImagineBundle\Controller\{closure} (line 162)
  1.     }
  2.     private function createRedirectResponse(\Closure $urlstring $pathstring $filter, ?string $hash null): RedirectResponse
  3.     {
  4.         try {
  5.             return new RedirectResponse($url(), $this->controllerConfig->getRedirectResponseCode());
  6.         } catch (NotLoadableException $exception) {
  7.             if (null !== $this->dataManager->getDefaultImageUrl($filter)) {
  8.                 return new RedirectResponse($this->dataManager->getDefaultImageUrl($filter));
  9.             }
  1.     public function filterAction(Request $request$path$filter)
  2.     {
  3.         $path PathHelper::urlPathToFilePath($path);
  4.         $resolver $request->get('resolver');
  5.         return $this->createRedirectResponse(function () use ($path$filter$resolver$request) {
  6.             return $this->filterService->getUrlOfFilteredImage(
  7.                 $path,
  8.                 $filter,
  9.                 $resolver,
  10.                 $this->isWebpSupported($request)
in vendor/symfony/http-kernel/HttpKernel.php -> filterAction (line 181)
  1.         $this->dispatcher->dispatch($eventKernelEvents::CONTROLLER_ARGUMENTS);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response $controller(...$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new ViewEvent($this$request$type$response$event);
  9.             $this->dispatcher->dispatch($eventKernelEvents::VIEW);
  1.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2.         $this->requestStack->push($request);
  3.         $response null;
  4.         try {
  5.             return $response $this->handleRaw($request$type);
  6.         } catch (\Throwable $e) {
  7.             if ($e instanceof \Error && !$this->handleAllThrowables) {
  8.                 throw $e;
  9.             }
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
  1.     ) {
  2.     }
  3.     public function run(): int
  4.     {
  5.         $response $this->kernel->handle($this->request);
  6.         if (Kernel::VERSION_ID >= 60400) {
  7.             $response->send(false);
  8.             if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app $app(...$args);
  2. exit(
  3.     $runtime
  4.         ->getRunner($app)
  5.         ->run()
  6. );
require_once('/var/www/parfum/releases/84/vendor/autoload_runtime.php') in public/index.php (line 5)
  1. <?php
  2. use App\Kernel;
  3. require_once dirname(__DIR__).'/vendor/autoload_runtime.php';
  4. return function (array $context) {
  5.     return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
  6. };

Logs

Level Channel Message
INFO 20:34:34 deprecation User Deprecated: In ORM 3.0, the AttributeDriver will report fields for the classes where they are declared. This may uncover invalid mapping configurations. To opt into the new mode today, set the "reportFieldsWhereDeclared" constructor parameter to true. (AttributeDriver.php:78 called by App_KernelDevDebugContainer.php:5326, https://github.com/doctrine/orm/pull/10455, package doctrine/orm)
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Not enabling lazy ghost objects is deprecated and will not be supported in Doctrine ORM 3.0. Ensure Doctrine\ORM\Configuration::setLazyGhostObjectEnabled(true) is called to enable them. (ProxyFactory.php:166 called by EntityManager.php:178, https://github.com/doctrine/orm/pull/10837/, package doctrine/orm)
{
    "exception": {}
}
INFO 20:34:34 doctrine Connecting with parameters {params}
{
    "params": {
        "driver": "pdo_mysql",
        "host": "localhost",
        "port": null,
        "user": "hgabka",
        "password": "<redacted>",
        "driverOptions": {
            "1002": "SET sql_mode=(SELECT REPLACE(@@sql_mode, \"ONLY_FULL_GROUP_BY\", \"\"))"
        },
        "defaultTableOptions": {
            "collation": "utf8mb4_unicode_ci"
        },
        "dbname": "parfumhu",
        "charset": "utf8mb4"
    }
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cached_reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.reader" service is deprecated without replacement.
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/framework-bundle 6.4: The "annotations.cache_adapter" service is deprecated without replacement.
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Gedmo\Tree\TreeListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Gedmo\Sortable\SortableListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Gedmo\Timestampable\TimestampableListener" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/doctrine-bridge 6.3: Registering "Sonata\Doctrine\Mapper\ORM\DoctrineORMMapper" as a Doctrine subscriber is deprecated. Register it as a listener instead, using e.g. the #[AsDoctrineListener] or #[AsDocumentListener] attribute.
{
    "exception": {}
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/monolog-bridge 6.4: The "Symfony\Bridge\Monolog\Logger" class is deprecated, use HttpKernel's DebugLoggerConfigurator instead.
{
    "exception": {}
}
DEBUG 20:34:34 doctrine Executing query: SELECT DATABASE()
{
    "sql": "SELECT DATABASE()"
}
INFO 20:34:34 deprecation User Deprecated: Since symfony/validator 6.4: Method "Symfony\Component\Validator\ValidatorBuilder::setDoctrineAnnotationReader()" is deprecated without replacement.
{
    "exception": {}
}
DEBUG 20:34:34 doctrine Executing statement: SELECT t0.id AS id_1, t0.name AS name_2, t0.short_name AS short_name_3, t0.slug AS slug_4, t0.search_terms AS search_terms_5, t0.text AS text_6, t0.text_female AS text_female_7, t0.text_male AS text_male_8, t0.highlighted AS highlighted_9, t0.main_page_fragrance AS main_page_fragrance_10, t0.highlighted_in_search AS highlighted_in_search_11, t0.is_on_main_page AS is_on_main_page_12, t0.special AS special_13, t0.special_name AS special_name_14, t0.slogan AS slogan_15, t0.`lead` AS lead_16, t0.active AS active_17, t0.exclude_from_arukereso AS exclude_from_arukereso_18, t0.image_id AS image_id_19 FROM brand t0 WHERE t0.slug = ? LIMIT 1 (parameters: {params}, types: {types})
{
    "sql": "SELECT t0.id AS id_1, t0.name AS name_2, t0.short_name AS short_name_3, t0.slug AS slug_4, t0.search_terms AS search_terms_5, t0.text AS text_6, t0.text_female AS text_female_7, t0.text_male AS text_male_8, t0.highlighted AS highlighted_9, t0.main_page_fragrance AS main_page_fragrance_10, t0.highlighted_in_search AS highlighted_in_search_11, t0.is_on_main_page AS is_on_main_page_12, t0.special AS special_13, t0.special_name AS special_name_14, t0.slogan AS slogan_15, t0.`lead` AS lead_16, t0.active AS active_17, t0.exclude_from_arukereso AS exclude_from_arukereso_18, t0.image_id AS image_id_19 FROM brand t0 WHERE t0.slug = ? LIMIT 1",
    "params": {
        "1": "_profiler"
    },
    "types": {
        "1": 2
    }
}
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was not able to match, message "No product found for slug /_profiler/30a027"
DEBUG 20:34:34 doctrine Executing query: SELECT t0.id AS id_1, t0.domain AS domain_2, t0.origin AS origin_3, t0.target AS target_4, t0.permanent AS permanent_5 FROM hg_settings_redirect t0
{
    "sql": "SELECT t0.id AS id_1, t0.domain AS domain_2, t0.origin AS origin_3, t0.target AS target_4, t0.permanent AS permanent_5 FROM hg_settings_redirect t0"
}
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was not able to match, message "No routes found for "/_profiler/30a027"."
INFO 20:34:34 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "30a027",
        "_locale": "hu"
    },
    "request_uri": "https://www.parfum.harmatgabor.eu/_profiler/30a027",
    "method": "GET"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\NodeBundle\EventListener\NodeLocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Hgabka\\NodeBundle\\EventListener\\NodeLocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\Doctrine\TranslatableBundle\EventListener\LocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Hgabka\\Doctrine\\TranslatableBundle\\EventListener\\LocaleListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\WebProfilerListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\WebProfilerListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\AdminControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\AdminControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\SlugListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\SlugListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "ContainerG5md5Oc\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerG5md5Oc\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 20:34:34 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 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler_font" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler_font' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler_home" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler_home' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler_search_results" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler_search_results' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler_search" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler_search' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\NodeBundle\EventListener\NodeLocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Hgabka\\NodeBundle\\EventListener\\NodeLocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\Doctrine\TranslatableBundle\EventListener\LocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Hgabka\\Doctrine\\TranslatableBundle\\EventListener\\LocaleListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\WebProfilerListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\WebProfilerListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\AdminControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\AdminControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\SlugListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\SlugListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "ContainerG5md5Oc\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerG5md5Oc\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 20:34:34 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 20:34:34 event Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "App\EventListener\NoCacheListener::__invoke".
{
    "event": "kernel.response",
    "listener": "App\\EventListener\\NoCacheListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "App\EventListener\SetCookiesEventListener::__invoke".
{
    "event": "kernel.response",
    "listener": "App\\EventListener\\SetCookiesEventListener::__invoke"
}
DEBUG 20:34:34 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 20:34:34 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 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 20:34:34 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 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Hgabka\NodeBundle\EventListener\FixDateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Hgabka\\NodeBundle\\EventListener\\FixDateListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 20:34:34 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 20:34:34 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 20:34:34 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 20:34:34 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 20:34:34 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\NodeBundle\EventListener\NodeLocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Hgabka\\NodeBundle\\EventListener\\NodeLocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\Doctrine\TranslatableBundle\EventListener\LocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Hgabka\\Doctrine\\TranslatableBundle\\EventListener\\LocaleListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\WebProfilerListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\WebProfilerListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\AdminControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\AdminControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\SlugListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\SlugListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "ContainerG5md5Oc\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerG5md5Oc\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 20:34:34 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 20:34:34 app Router App\Router\ProductDetailsRouter was unable to generate route. Reason: 'Route 'Product details rote' not found': Unable to generate a URL for the named route "_profiler_search" as such route does not exist.
DEBUG 20:34:34 app Router Hgabka\SettingsBundle\Router\RedirectRouter was unable to generate route. Reason: 'Route '_profiler_search' not found': You cannot generate a url from a redirect
DEBUG 20:34:34 event Notified event "kernel.response" to listener "JMS\I18nRoutingBundle\EventListener\CookieSettingListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "JMS\\I18nRoutingBundle\\EventListener\\CookieSettingListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\WebpackEncoreBundle\EventListener\PreLoadAssetsEventListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\PreLoadAssetsEventListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "App\EventListener\NoCacheListener::__invoke".
{
    "event": "kernel.response",
    "listener": "App\\EventListener\\NoCacheListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "App\EventListener\SetCookiesEventListener::__invoke".
{
    "event": "kernel.response",
    "listener": "App\\EventListener\\SetCookiesEventListener::__invoke"
}
DEBUG 20:34:34 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 20:34:34 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 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ResponseListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ResponseListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\WebLink\EventListener\AddLinkHeaderListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\WebLink\\EventListener\\AddLinkHeaderListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelResponse"
}
DEBUG 20:34:34 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 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Hgabka\NodeBundle\EventListener\FixDateListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Hgabka\\NodeBundle\\EventListener\\FixDateListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ProfilerListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ProfilerListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::removeCspHeader".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::removeCspHeader"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Bundle\WebProfilerBundle\EventListener\WebDebugToolbarListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Bundle\\WebProfilerBundle\\EventListener\\WebDebugToolbarListener::onKernelResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\DisallowRobotsIndexingListener::onResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DisallowRobotsIndexingListener::onResponse"
}
DEBUG 20:34:34 event Notified event "kernel.response" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelResponse".
{
    "event": "kernel.response",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelResponse"
}
DEBUG 20:34:34 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 20:34:34 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 20:34:34 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 20:34:34 event Notified event "kernel.finish_request" to listener "Symfony\WebpackEncoreBundle\EventListener\ResetAssetsEventListener::resetAssets".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\WebpackEncoreBundle\\EventListener\\ResetAssetsEventListener::resetAssets"
}
DEBUG 20:34:34 event Notified event "kernel.finish_request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelFinishRequest".
{
    "event": "kernel.finish_request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelFinishRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\DebugHandlersListener::configure"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ValidateRequestListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\SessionListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::setDefaultLocale".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::setDefaultLocale"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\NodeBundle\EventListener\NodeLocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Hgabka\\NodeBundle\\EventListener\\NodeLocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\RouterListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleAwareListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\LocaleAwareListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Hgabka\Doctrine\TranslatableBundle\EventListener\LocaleListener::__invoke".
{
    "event": "kernel.request",
    "listener": "Hgabka\\Doctrine\\TranslatableBundle\\EventListener\\LocaleListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::configureLogoutUrlGenerator".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::configureLogoutUrlGenerator"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Symfony\\Bundle\\SecurityBundle\\Debug\\TraceableFirewallListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\MaintenanceListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\MaintenanceListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "App\EventListener\WebProfilerListener::__invoke".
{
    "event": "kernel.request",
    "listener": "App\\EventListener\\WebProfilerListener::__invoke"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LoggerListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LoggerListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.request" to listener "Stof\DoctrineExtensionsBundle\EventListener\LocaleListener::onKernelRequest".
{
    "event": "kernel.request",
    "listener": "Stof\\DoctrineExtensionsBundle\\EventListener\\LocaleListener::onKernelRequest"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\AdminControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\AdminControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Bundle\\FrameworkBundle\\DataCollector\\RouterDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Hgabka\NodeBundle\EventListener\SlugListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Hgabka\\NodeBundle\\EventListener\\SlugListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Symfony\\Component\\HttpKernel\\DataCollector\\RequestDataCollector::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller" to listener "Sonata\AdminBundle\EventListener\ConfigureCRUDControllerListener::onKernelController".
{
    "event": "kernel.controller",
    "listener": "Sonata\\AdminBundle\\EventListener\\ConfigureCRUDControllerListener::onKernelController"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\Security\Http\EventListener\IsGrantedAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\Security\\Http\\EventListener\\IsGrantedAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\CacheAttributeListener::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\CacheAttributeListener::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "ContainerG5md5Oc\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "ContainerG5md5Oc\\RequestPayloadValueResolverGhost3590451::onKernelControllerArguments"
}
DEBUG 20:34:34 event Notified event "kernel.controller_arguments" to listener "Symfony\Component\HttpKernel\EventListener\ErrorListener::onControllerArguments".
{
    "event": "kernel.controller_arguments",
    "listener": "Symfony\\Component\\HttpKernel\\EventListener\\ErrorListener::onControllerArguments"
}

Stack Traces 2

[2/2] NotFoundHttpException
Symfony\Component\HttpKernel\Exception\NotFoundHttpException:
Source image for path "uploads/media/3/8/4/4/logo-final-300.png" could not be found

  at vendor/liip/imagine-bundle/Controller/ImagineController.php:168
  at Liip\ImagineBundle\Controller\ImagineController->createRedirectResponse()
     (vendor/liip/imagine-bundle/Controller/ImagineController.php:90)
  at Liip\ImagineBundle\Controller\ImagineController->filterAction()
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/parfum/releases/84/vendor/autoload_runtime.php')
     (public/index.php:5)                
[1/2] NotLoadableException
Liip\ImagineBundle\Exception\Binary\Loader\NotLoadableException:
Source image not resolvable "uploads/media/3/8/4/4/logo-final-300.png" in root path(s) "/var/www/parfum/shared/public:/var/www/parfum/releases/84/public"

  at vendor/liip/imagine-bundle/Binary/Locator/FileSystemLocator.php:47
  at Liip\ImagineBundle\Binary\Locator\FileSystemLocator->locate()
     (vendor/liip/imagine-bundle/Binary/Loader/FileSystemLoader.php:71)
  at Liip\ImagineBundle\Binary\Loader\FileSystemLoader->find()
     (vendor/liip/imagine-bundle/Imagine/Data/DataManager.php:129)
  at Liip\ImagineBundle\Imagine\Data\DataManager->find()
     (vendor/liip/imagine-bundle/Service/FilterService.php:222)
  at Liip\ImagineBundle\Service\FilterService->createFilteredBinary()
     (vendor/liip/imagine-bundle/Service/FilterService.php:205)
  at Liip\ImagineBundle\Service\FilterService->warmUpCacheFilterPathContainer()
     (vendor/liip/imagine-bundle/Service/FilterService.php:123)
  at Liip\ImagineBundle\Service\FilterService->getUrlOfFilteredImage()
     (vendor/liip/imagine-bundle/Controller/ImagineController.php:91)
  at Liip\ImagineBundle\Controller\ImagineController->Liip\ImagineBundle\Controller\{closure}()
     (vendor/liip/imagine-bundle/Controller/ImagineController.php:162)
  at Liip\ImagineBundle\Controller\ImagineController->createRedirectResponse()
     (vendor/liip/imagine-bundle/Controller/ImagineController.php:90)
  at Liip\ImagineBundle\Controller\ImagineController->filterAction()
     (vendor/symfony/http-kernel/HttpKernel.php:181)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw()
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle()
     (vendor/symfony/http-kernel/Kernel.php:197)
  at Symfony\Component\HttpKernel\Kernel->handle()
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/var/www/parfum/releases/84/vendor/autoload_runtime.php')
     (public/index.php:5)