Bullpadel

Login

Sign in to access the dashboard.

Loading…
Loading the web debug toolbar…
Attempt #
Writing to the log file failed: Write of 694 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: User Deprecated: Since symfony/http-foundation 7.4: Trying to use "Symfony\Component\HttpFoundation\Response::sendHeaders()" after headers have already been sent is deprecated and will throw a PHP warning in 8.0. Use a "StreamedResponse" instead. Context: {"exception":{}} (500 Internal Server Error)

Symfony Exception

UnexpectedValueException

HTTP 500 Internal Server Error

Writing to the log file failed: Write of 694 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: User Deprecated: Since symfony/http-foundation 7.4: Trying to use "Symfony\Component\HttpFoundation\Response::sendHeaders()" after headers have already been sent is deprecated and will throw a PHP warning in 8.0. Use a "StreamedResponse" instead.
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. $error = $this->errorMessage;
  2. // close the resource if possible to reopen it, and retry the failed write
  3. if (!$this->retrying && $this->url !== null && $this->url !== 'php://memory') {
  4. $this->retrying = true;
  5. $this->close();
  6. $this->write($record);
  7. return;
  8. }
  9. throw new \UnexpectedValueException('Writing to the log file failed: '.$error . Utils::getRecordMessageForException($record));
  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. $log = 0;
  2. } else {
  3. try {
  4. $this->isRecursive = true;
  5. $level = ($type & $level) ? $this->loggers[$type][1] : LogLevel::DEBUG;
  6. $this->loggers[$type][0]->log($level, $logMessage, $errorAsException ? ['exception' => $errorAsException] : []);
  7. } finally {
  8. $this->isRecursive = false;
  9. }
  10. }
ErrorHandler->handleError()
  1. *
  2. * @author Nicolas Grekas <p@tchwork.com>
  3. */
  4. function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): void
  5. {
  6. @trigger_error(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USER_DEPRECATED);
  7. }
  8. }
  1. {
  2. // headers have already been sent by the developer
  3. if (headers_sent()) {
  4. if (!\in_array(\PHP_SAPI, ['cli', 'phpdbg', 'embed'], true)) {
  5. $statusCode ??= $this->statusCode;
  6. trigger_deprecation('symfony/http-foundation', '7.4', 'Trying to use "%s::sendHeaders()" after headers have already been sent is deprecated and will throw a PHP warning in 8.0. Use a "StreamedResponse" instead.', static::class);
  7. // header(\sprintf('HTTP/%s %s %s', $this->version, $statusCode, $this->statusText), true, $statusCode);
  8. }
  9. return $this;
  10. }
  1. if ($pop) {
  2. $this->requestStack->pop();
  3. }
  4. }
  5. $response->sendHeaders();
  6. $response->sendContent();
  7. $this->terminate($request, $response);
  8. }
  1. if ($hasRun) {
  2. throw $e;
  3. }
  4. $hasRun = true;
  5. $kernel->terminateWithException($e, $request);
  6. };
  7. }
  8. } elseif ($event instanceof ConsoleEvent && $app = $event->getCommand()->getApplication()) {
  9. $output = $event->getOutput();
  10. if ($output instanceof ConsoleOutputInterface) {
in /home/clientes/bullpadel/conector/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 694 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: User Deprecated: Since symfony/http-foundation 7.4: Trying to use "Symfony\Component\HttpFoundation\Response::sendHeaders()" after headers have already been sent is deprecated and will throw a PHP warning in 8.0. Use a "StreamedResponse" instead.
Context: {"exception":{}}

  at /home/clientes/bullpadel/conector/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:195
  at Monolog\Handler\StreamHandler->write()
     (/home/clientes/bullpadel/conector/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:190)
  at Monolog\Handler\StreamHandler->write()
     (/home/clientes/bullpadel/conector/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:44)
  at Monolog\Handler\AbstractProcessingHandler->handle()
     (/home/clientes/bullpadel/conector/vendor/monolog/monolog/src/Monolog/Logger.php:391)
  at Monolog\Logger->addRecord()
     (/home/clientes/bullpadel/conector/vendor/monolog/monolog/src/Monolog/Logger.php:581)
  at Monolog\Logger->log()
     (/home/clientes/bullpadel/conector/vendor/symfony/error-handler/ErrorHandler.php:480)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleError()
  at trigger_error()
     (/home/clientes/bullpadel/conector/vendor/symfony/deprecation-contracts/function.php:25)
  at trigger_deprecation()
     (/home/clientes/bullpadel/conector/vendor/symfony/http-foundation/Response.php:322)
  at Symfony\Component\HttpFoundation\Response->sendHeaders()
     (/home/clientes/bullpadel/conector/vendor/symfony/http-kernel/HttpKernel.php:141)
  at Symfony\Component\HttpKernel\HttpKernel->terminateWithException()
     (/home/clientes/bullpadel/conector/vendor/symfony/http-kernel/EventListener/DebugHandlersListener.php:77)
  at Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::Symfony\Component\HttpKernel\EventListener\{closure}()
     (/home/clientes/bullpadel/conector/vendor/symfony/error-handler/ErrorHandler.php:538)
  at Symfony\Component\ErrorHandler\ErrorHandler->handleException()