MARCEL COUTURIER Loché Les Longues Terres 2010
MARCEL COUTURIER Loché Les Longues Terres 2010

Marcel Couturier

Favori
Loché Les Longues Terres 2010 - blanc
  • blanc tranquille
Guide Hachette des Vins 2013
Vin cité!

Marcel Couturier Loché Les Longues Terres 2010 blanc : L'avis du Guide Hachette des Vins 2013

Au pied des coteaux de Pouilly, Loché, magnifique petit village de pierres jaunes, apparaît comme un petit coin de paradis. Marcel Couturier y exploite 50 ares de chardonnay, qu'il a récolté manuellement et élevé en fût de chêne durant une année pour donner naissance à ce 2010 éclatant dans sa robe d'or à reflets verts. Le nez, expressif, évoque les épices douces, le beurre frais et les fleurs blanches. À l'attaque, le palais s'avère gras et puissant, riche de saveurs lactées et de fruits confits, mais encore largement dominé par le bois. C'est donc plutôt son potentiel qu'ont récompensé les jurés, estimant que deux ans de garde devraient affiner l'ensemble. Les amateurs de vins boisés pourront, quant à eux, s'en satisfaire dès à présent.

Vous avez aimé ce vin ? Donnez-nous votre avis

Note moyenne :
Les autres millésimes de ce vin

Détails du vin

Les caractéristiques du vin

Garde
-
Production
4 000 bouteilles
élevage
En fût
température
11 à 13 °C
Producteur
DOM. MARCEL COUTURIER
Fiche du producteur
Appellation
Mâcon et mâcon-villages
Fiche appellation

Le Guide Hachette vous recommande également

Vins similaires

Dégustation à la propriété
Oui
Vente à la propriété
Oui
Gîte
Non
Chambre d’hôte
Non
Découvrir
Image principale appellation

L’appellation Mâcon et mâcon-villages

Décalés par rapport à la Côte d'Or, les monts du Mâconnais composent une double succession de chaînons orientés nord-nord-est sud-sud-ouest, entaillés par une série de failles parallèles. Entre les vallées de la Saône et de la Grosne, ces collines sont propices à la culture du chardonnay qui produit ici des vins blancs précoces. Les ...

Découvrir

Vous aimez le vin Marcel Couturier? Donnez-nous votre avis

 COMMENTAIRE

Format de la date invalide JJ/MM/AAAA.
Notice: fwrite(): Write of 267 bytes failed with errno=28 No space left on device (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

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

Exception

ErrorException

  1.      *
  2.      * @phpstan-param FormattedRecord $record
  3.      */
  4.     protected function streamWrite($stream, array $record): void
  5.     {
  6.         fwrite($stream, (string) $record['formatted']);
  7.     }
  8.     private function customErrorHandler(int $codestring $msg): bool
  9.     {
  10.         $this->errorMessage preg_replace('{^(fopen|mkdir)\(.*?\): }'''$msg);
  1.         if ($this->useLocking) {
  2.             // ignoring errors here, there's not much we can do about them
  3.             flock($streamLOCK_EX);
  4.         }
  5.         $this->streamWrite($stream$record);
  6.         if ($this->useLocking) {
  7.             flock($streamLOCK_UN);
  8.         }
  9.     }
  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.                 }
  3.                 // once the record exists, send it to all handlers as long as the bubbling chain is not interrupted
  4.                 try {
  5.                     if (true === $handler->handle($record)) {
  6.                         break;
  7.                     }
  8.                 } catch (Throwable $e) {
  9.                     $this->handleException($e$record);
  1.      * @param string|Stringable $message The log message
  2.      * @param mixed[]           $context The log context
  3.      */
  4.     public function critical($message, array $context = []): void
  5.     {
  6.         $this->addRecord(static::CRITICAL, (string) $message$context);
  7.     }
  8.     /**
  9.      * Adds a log record at the ALERT level.
  10.      *
  1.     {
  2.         if (null !== $this->logger) {
  3.             if (null !== $logLevel) {
  4.                 $this->logger->log($logLevel$message, ['exception' => $exception]);
  5.             } elseif (!$exception instanceof HttpExceptionInterface || $exception->getStatusCode() >= 500) {
  6.                 $this->logger->critical($message, ['exception' => $exception]);
  7.             } else {
  8.                 $this->logger->error($message, ['exception' => $exception]);
  9.             }
  10.         }
  11.     }
  1.             break;
  2.         }
  3.         $e FlattenException::createFromThrowable($throwable);
  4.         $this->logException($throwablesprintf('Uncaught PHP Exception %s: "%s" at %s line %s'$e->getClass(), $e->getMessage(), $e->getFile(), $e->getLine()), $logLevel);
  5.     }
  6.     public function onKernelException(ExceptionEvent $event)
  7.     {
  8.         if (null === $this->controller) {
  1.         $this->called true;
  2.         $this->priority $dispatcher->getListenerPriority($eventName$this->listener);
  3.         $e $this->stopwatch->start($this->name'event_listener');
  4.         ($this->optimizedListener ?? $this->listener)($event$eventName$dispatcher);
  5.         if ($e->isStarted()) {
  6.             $e->stop();
  7.         }
  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.      * @throws \Exception
  2.      */
  3.     private function handleThrowable(\Throwable $eRequest $requestint $type): Response
  4.     {
  5.         $event = new ExceptionEvent($this$request$type$e);
  6.         $this->dispatcher->dispatch($eventKernelEvents::EXCEPTION);
  7.         // a listener might have replaced the exception
  8.         $e $event->getThrowable();
  9.         if (!$event->hasResponse()) {
  1.     {
  2.         if (!$request $request ?: $this->requestStack->getMainRequest()) {
  3.             throw $exception;
  4.         }
  5.         $response $this->handleThrowable($exception$requestself::MAIN_REQUEST);
  6.         $response->sendHeaders();
  7.         $response->sendContent();
  8.         $this->terminate($request$response);
  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/vendor/symfony/error-handler/ErrorHandler.php :: Symfony\Component\HttpKernel\EventListener\{closure} (line 541)
  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(object(RuntimeException))

Stack Trace

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

  at /var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:178
  at Monolog\Handler\StreamHandler->streamWrite(resource, array('message' => 'Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145', 'context' => array('exception' => object(RuntimeException)), 'level' => 500, 'level_name' => 'CRITICAL', 'channel' => 'request', 'datetime' => object(DateTimeImmutable), 'extra' => array(), 'formatted' => '[2026-06-27T10:00:12.763778+00:00] request.CRITICAL: Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145 {"exception":"[object] (RuntimeException(code: 0): Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8). at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:145)"} []'))
     (/var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:162)
  at Monolog\Handler\StreamHandler->write(array('message' => 'Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145', 'context' => array('exception' => object(RuntimeException)), 'level' => 500, 'level_name' => 'CRITICAL', 'channel' => 'request', 'datetime' => object(DateTimeImmutable), 'extra' => array(), 'formatted' => '[2026-06-27T10:00:12.763778+00:00] request.CRITICAL: Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145 {"exception":"[object] (RuntimeException(code: 0): Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8). at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:145)"} []'))
     (/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:48)
  at Monolog\Handler\AbstractProcessingHandler->handle(array('message' => 'Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145', 'context' => array('exception' => object(RuntimeException)), 'level' => 500, 'level_name' => 'CRITICAL', 'channel' => 'request', 'datetime' => object(DateTimeImmutable), 'extra' => array(), 'formatted' => '[2026-06-27T10:00:12.763778+00:00] request.CRITICAL: Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145 {"exception":"[object] (RuntimeException(code: 0): Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8). at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php:145)"} []'))
     (/var/www/vendor/monolog/monolog/src/Monolog/Logger.php:379)
  at Monolog\Logger->addRecord(500, 'Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145', array('exception' => object(RuntimeException)))
     (/var/www/vendor/monolog/monolog/src/Monolog/Logger.php:639)
  at Monolog\Logger->critical('Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145', array('exception' => object(RuntimeException)))
     (/var/www/vendor/symfony/http-kernel/EventListener/ErrorListener.php:158)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->logException(object(RuntimeException), 'Uncaught PHP Exception RuntimeException: "Unable to create the storage directory (/var/www/var/cache/dev/profiler/4b/b8)." at /var/www/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php line 145', null)
     (/var/www/vendor/symfony/http-kernel/EventListener/ErrorListener.php:72)
  at Symfony\Component\HttpKernel\EventListener\ErrorListener->logKernelException(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (/var/www/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:111)
  at Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object(ExceptionEvent), 'kernel.exception', object(TraceableEventDispatcher))
     (/var/www/vendor/symfony/event-dispatcher/EventDispatcher.php:230)
  at Symfony\Component\EventDispatcher\EventDispatcher->callListeners(array(object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener), object(WrappedListener)), 'kernel.exception', object(ExceptionEvent))
     (/var/www/vendor/symfony/event-dispatcher/EventDispatcher.php:59)
  at Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/var/www/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:152)
  at Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object(ExceptionEvent), 'kernel.exception')
     (/var/www/vendor/symfony/http-kernel/HttpKernel.php:213)
  at Symfony\Component\HttpKernel\HttpKernel->handleThrowable(object(RuntimeException), object(Request), 1)
     (/var/www/vendor/symfony/http-kernel/HttpKernel.php:106)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException(object(RuntimeException), object(Request))
     (/var/www/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:125)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}(object(RuntimeException))
     (/var/www/vendor/symfony/error-handler/ErrorHandler.php:541)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException(object(RuntimeException))                

Fatal error: Uncaught ErrorException: Notice: fwrite(): Write of 70 bytes failed with errno=28 No space left on device in /var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:178 Stack trace: #0 /var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php(162): Monolog\Handler\StreamHandler->streamWrite(Resource id #420, Array) #1 /var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(48): Monolog\Handler\StreamHandler->write(Array) #2 /var/www/vendor/monolog/monolog/src/Monolog/Logger.php(379): Monolog\Handler\AbstractProcessingHandler->handle(Array) #3 /var/www/vendor/monolog/monolog/src/Monolog/Logger.php(587): Monolog\Logger->addRecord(200, 'Disconnecting', Array) #4 /var/www/vendor/doctrine/dbal/src/Logging/Connection.php(29): Monolog\Logger->info('Disconnecting') #5 [internal function]: Doctrine\DBAL\Logging\Connection->__destruct() #6 {main} thrown in /var/www/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 178