GET https://sylius-cuisinstore.preprod.eu/fr_FR/products/bouteille-isotherme-2-litres-inox-titan-qwetch-8089

Translation

fr_FR Default locale
- Fallback locales

Messages

Defined 0

These messages are correctly translated into the given locale.

None of the used translation messages are defined for the given locale.

Fallback 24

These messages are not available for the given locale but Symfony found them in the fallback locale catalog.

Locale Fallback locale Domain Times used Message ID Message Preview
fr_FR en messages 1 sylius.ui.account_navigation_mobile Account navigation (mobile)
fr_FR en messages 1 sylius.ui.account_button Account button
fr_FR en messages 1 sylius.ui.account_navigation_desktop Account navigation (desktop)
fr_FR fr messages 1 sylius.ui.login Connexion
fr_FR fr messages 2 sylius.ui.register Créer un compte
fr_FR fr messages 2 sylius.ui.loading Chargement
fr_FR fr messages 1 sylius.ui.item.choice (pluralization is used)
fr_FR en messages 1 sylius.ui.taxon_navigation_desktop Taxon navigation (desktop)
fr_FR fr messages 1 sylius.ui.taxons Taxons
fr_FR en messages 1 sylius.ui.close Close
fr_FR fr messages 1 sylius.ui.home Accueil
fr_FR fr messages 2 sylius.ui.reviews Avis
fr_FR fr messages 2 sylius.ui.add_your_review Ajouter votre avis
fr_FR fr messages 1 sylius.ui.quantity Quantité
fr_FR fr messages 1 sylius.ui.add_to_cart Ajouter au panier
fr_FR fr messages 1 sylius.ui.details Détails
fr_FR fr messages 1 sylius.ui.info Info
fr_FR fr messages 1 sylius.ui.there_are_no_reviews Il n'y a aucun avis
fr_FR en messages 1 sylius.ui.sylius_logo_aria Sylius logo
fr_FR fr messages 1 sylius.ui.cart Panier
fr_FR fr messages 1 sylius.ui.your_cart_is_empty Votre panier est vide
fr_FR fr messages 1 sylius.ui.subtotal Sous-total
fr_FR fr messages 1 sylius.ui.view_and_edit_cart Afficher et modifier le panier
fr_FR fr messages 1 sylius.ui.checkout Paiement

Missing 3

These messages are not available for the given locale and cannot be found in the fallback locales. Add them to the translation catalogue to avoid Symfony outputting untranslated contents.

Locale Domain Times used Message ID Message Preview
fr_FR messages 1 Connexion Connexion
fr_FR messages 1 Créer un compte Créer un compte
fr_FR messages 1 Ajouter au panier Ajouter au panier
Writing to the log file failed: Write of 614 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Uncaught PHP Exception UnexpectedValueException: "Writing to the log file failed: Write of 70 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Disconnecting" at StreamHandler.php line 186 Context: {"exception":{}} (500 Internal Server Error)

Symfony Exception

UnexpectedValueException

HTTP 500 Internal Server Error

Writing to the log file failed: Write of 614 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Uncaught PHP Exception UnexpectedValueException: "Writing to the log file failed: Write of 70 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Disconnecting" at StreamHandler.php line 186
Context: {"exception":{}}

Exception

UnexpectedValueException

  1. $this->write($record);
  2. return;
  3. }
  4. throw new \UnexpectedValueException('Writing to the log file failed: '.$error . Utils::getRecordMessageForException($record));
  5. }
  6. $this->retrying = false;
  7. if ($this->useLocking) {
  8. flock($stream, LOCK_UN);
  1. $record = $this->processRecord($record);
  2. }
  3. $record->formatted = $this->getFormatter()->format($record);
  4. $this->write($record);
  5. return false === $this->bubble;
  6. }
  7. /**
  1. }
  2. // once the record is initialized, send it to all handlers as long as the bubbling chain is not interrupted
  3. try {
  4. $handled = true;
  5. if (true === $handler->handle(clone $record)) {
  6. break;
  7. }
  8. } catch (Throwable $e) {
  9. $this->handleException($e, $record);
  1. }
  2. $level = static::toMonologLevel($level);
  3. }
  4. $this->addRecord($level, (string) $message, $context);
  5. }
  6. /**
  7. * Adds a log record at the DEBUG level.
  8. *
  1. if (!$logger = $this->getLogger($logChannel)) {
  2. return;
  3. }
  4. $logger->log($logLevel, $message, ['exception' => $exception]);
  5. }
  6. /**
  7. * Resolves the level to be used when logging the exception.
  8. */
  1. $event->setThrowable($throwable);
  2. }
  3. $e = FlattenException::createFromThrowable($throwable);
  4. $this->logException($throwable, \sprintf('Uncaught PHP Exception %s: "%s" at %s line %s', $e->getClass(), $e->getMessage(), basename($e->getFile()), $e->getLine()), $logLevel, $logChannel);
  5. }
  6. public function onKernelException(ExceptionEvent $event): void
  7. {
  8. if (null === $this->controller) {
  1. ) {
  2. }
  3. public function logKernelException(ExceptionEvent $event): void
  4. {
  5. $this->decoratedListener->logKernelException($event);
  6. }
  7. public function onKernelException(ExceptionEvent $event): void
  8. {
  9. try {
  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. }
  2. public function dispatch(object $event, ?string $eventName = null): object
  3. {
  4. if ($this->disabled?->__invoke()) {
  5. return $this->dispatcher->dispatch($event, $eventName);
  6. }
  7. $eventName ??= $event::class;
  8. $this->callStack ??= new \SplObjectStorage();
  1. * Handles a throwable by trying to convert it to a Response.
  2. */
  3. private function handleThrowable(\Throwable $e, Request $request, int $type): Response
  4. {
  5. $event = new ExceptionEvent($this, $request, $type, $e, isKernelTerminating: $this->terminating);
  6. $this->dispatcher->dispatch($event, KernelEvents::EXCEPTION);
  7. // a listener might have replaced the exception
  8. $e = $event->getThrowable();
  9. if (!$event->hasResponse()) {
  1. if ($pop = $request !== $this->requestStack->getMainRequest()) {
  2. $this->requestStack->push($request);
  3. }
  4. try {
  5. $response = $this->handleThrowable($exception, $request, self::MAIN_REQUEST);
  6. } finally {
  7. if ($pop) {
  8. $this->requestStack->pop();
  9. }
  10. }
  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 /www/wwwroot/sylius-cuisinstore/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 538)
  1. $this->exceptionHandler = null;
  2. }
  3. try {
  4. if (null !== $exceptionHandler) {
  5. $exceptionHandler($exception);
  6. return;
  7. }
  8. $handlerException ??= $exception;
  9. } catch (\Throwable $handlerException) {
ErrorHandler->handleException()

Stack Trace

UnexpectedValueException
UnexpectedValueException:
Writing to the log file failed: Write of 614 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Uncaught PHP Exception UnexpectedValueException: "Writing to the log file failed: Write of 70 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Disconnecting" at StreamHandler.php line 186
Context: {"exception":{}}

  at /www/wwwroot/sylius-cuisinstore/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:186
  at Monolog\Handler\StreamHandler->write()
     (/www/wwwroot/sylius-cuisinstore/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:44)
  at Monolog\Handler\AbstractProcessingHandler->handle()
     (/www/wwwroot/sylius-cuisinstore/vendor/monolog/monolog/src/Monolog/Logger.php:391)
  at Monolog\Logger->addRecord()
     (/www/wwwroot/sylius-cuisinstore/vendor/monolog/monolog/src/Monolog/Logger.php:581)
  at Monolog\Logger->log()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/http-kernel/EventListener/ErrorListener.php:177)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->logException()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/http-kernel/EventListener/ErrorListener.php:74)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->logKernelException()
     (/www/wwwroot/sylius-cuisinstore/vendor/sylius/sylius/src/Sylius/Bundle/CoreBundle/EventListener/CircularDependencyBreakingErrorListener.php:59)
  at Sylius\Bundle\CoreBundle\EventListener\CircularDependencyBreakingErrorListener->logKernelException()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/event-dispatcher/EventDispatcher.php:206)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/event-dispatcher/EventDispatcher.php:56)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:108)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/http-kernel/HttpKernel.php:241)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/http-kernel/HttpKernel.php:134)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:84)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/www/wwwroot/sylius-cuisinstore/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()