Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 58

Deprecated: Constant E_STRICT is deprecated in /home/ccoste/codes/coste/www/vendor/symfony/error-handler/ErrorHandler.php on line 76
Symfony Profiler

Twig Metrics

113 ms Render time
16 Template calls
12 Block calls
0 Macro calls

Render time includes sub-requests rendering time (if any).

Rendered Templates

Template Name & Path Render Count
blog/index.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/blog/index.html.twig 1
base.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/base.html.twig 1
default/_flash_messages.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/default/_flash_messages.html.twig 1
blog/_post.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/blog/_post.html.twig 3
blog/_post_tags.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/blog/_post_tags.html.twig 3
blog/about.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/blog/about.html.twig 1
debug/source_code.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/debug/source_code.html.twig 1
blog/_rss.html.twig /home/charly/Téléchargements/demo-2.4.0/templates/blog/_rss.html.twig 1
@WebProfiler/Profiler/toolbar_js.html.twig /home/charly/Téléchargements/demo-2.4.0/vendor/symfony/web-profiler-bundle/Resources/views/Profiler/toolbar_js.html.twig 1
@WebProfiler/Profiler/toolbar.html.twig /home/charly/Téléchargements/demo-2.4.0/vendor/symfony/web-profiler-bundle/Resources/views/Profiler/toolbar.html.twig 1
@WebProfiler/Profiler/toolbar_item.html.twig /home/charly/Téléchargements/demo-2.4.0/vendor/symfony/web-profiler-bundle/Resources/views/Profiler/toolbar_item.html.twig 1
@WebProfiler/Profiler/toolbar.css.twig /home/charly/Téléchargements/demo-2.4.0/vendor/symfony/web-profiler-bundle/Resources/views/Profiler/toolbar.css.twig 1

Rendering Call Graph

main 112.75ms/100%
â”” blog/index.html.twig 107.46ms/95%
│ └ base.html.twig 106.07ms/94%
│   └ base.html.twig::block(title)
│   └ base.html.twig::block(stylesheets) 2.50ms/2%
│   └ base.html.twig::block(javascripts)
│   └ blog/index.html.twig::block(body_id)
│   └ base.html.twig::block(header) 34.33ms/30%
│   │ └ base.html.twig::block(header_navigation_links) 10.80ms/10%
│   └ base.html.twig::block(body) 21.14ms/19%
│   │ └ default/_flash_messages.html.twig
│   │ └ blog/index.html.twig::block(main) 3.64ms/3%
│   │ │ └ blog/_post.html.twig 2.24ms/2%
│   │ │ │ └ blog/_post_tags.html.twig
│   │ │ └ blog/_post.html.twig
│   │ │ │ └ blog/_post_tags.html.twig
│   │ │ └ blog/_post.html.twig
│   │ │   └ blog/_post_tags.html.twig
│   │ └ blog/index.html.twig::block(sidebar) 16.06ms/14%
│   │   └ base.html.twig::block(sidebar) 10.58ms/9%
│   │   │ └ blog/about.html.twig
│   │   └ debug/source_code.html.twig
│   │   └ blog/_rss.html.twig
│   └ base.html.twig::block(footer)
â”” @WebProfiler/Profiler/toolbar_js.html.twig 5.29ms/5%
  â”” @WebProfiler/Profiler/toolbar.html.twig 2.70ms/2%
  │ └ @WebProfiler/Profiler/cancel.html.twig::block(toolbar) 1.26ms/1%
  │   └ @WebProfiler/Profiler/toolbar_item.html.twig
  â”” @WebProfiler/Profiler/toolbar.css.twig
Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded (500 Internal Server Error)

Symfony Exception

ErrorException

HTTP 500 Internal Server Error

Notice: fwrite(): Write of 70 bytes failed with errno=122 Disk quota exceeded

ErrorException

Show exception properties
0 of 0
ErrorException {#2113 â–Ľ #severity: E_NOTICE }
  1.      * Write to stream
  2.      * @param resource $stream
  3.      */
  4.     protected function streamWrite($streamLogRecord $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.                 // 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.      * @param string|Stringable $message The log message
  2.      * @param mixed[]           $context The log context
  3.      */
  4.     public function info(string|\Stringable $message, array $context = []): void
  5.     {
  6.         $this->addRecord(Level::Info, (string) $message$context);
  7.     }
  8.     /**
  9.      * Adds a log record at the NOTICE level.
  10.      *
  1.         $this->logger $logger;
  2.     }
  3.     public function __destruct()
  4.     {
  5.         $this->logger->info('Disconnecting');
  6.     }
  7.     public function prepare(string $sql): DriverStatement
  8.     {
  9.         return new Statement(
Connection->__destruct()