Kết nối với chúng tôi

Hình nền theo Chủ Đề

Hình nền theo Phong Cách

Hình nền theo Sự Kiện

Hỗ trợ
Hướng dẫn tải
Hệ thống đang xử lý yêu cầu của bạn, vui lòng chờ vài giây nhé!
Đã thêm vào giỏ hàng!
- -
Writing to the log file failed: Write of 6166 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6274 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6253 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6228 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6270 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6280 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6473 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6694 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6630 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 6570 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 7261 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 7248 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 7396 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: Writing to the log file failed: Write of 7080 bytes failed with errno=28 No space left on device The exception occurred while attempting to log: file_put_contents(): Write of 201 bytes failed with errno=28 No space left on device Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} Context: {"exception":{}} (500 Internal Server Error)

Symfony Exception

UnexpectedValueException

HTTP 500 Internal Server Error

Writing to the log file failed: Write of 6166 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6274 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6253 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6228 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6270 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6280 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6473 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6694 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6630 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6570 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7261 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7248 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7396 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7080 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: file_put_contents(): Write of 201 bytes failed with errno=28 No space left on device
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
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. }
  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 error($message, array $context = []): void
  5. {
  6. $this->addRecord(static::ERROR, (string) $message, $context);
  7. }
  8. /**
  9. * Adds a log record at the CRITICAL level.
  10. *
  1. * @param array $context
  2. * @return void
  3. */
  4. protected function writeLog($level, $message, $context): void
  5. {
  6. $this->logger->{$level}(
  7. $message = $this->formatMessage($message),
  8. $context = array_merge($this->context, $context)
  9. );
  10. $this->fireLogEvent($level, $message, $context);
  1. * @param array $context
  2. * @return void
  3. */
  4. public function error($message, array $context = []): void
  5. {
  6. $this->writeLog(__FUNCTION__, $message, $context);
  7. }
  8. /**
  9. * Log a warning message to the logs.
  10. *
  1. * @param array $context
  2. * @return void
  3. */
  4. public function error($message, array $context = []): void
  5. {
  6. $this->driver()->error($message, $context);
  7. }
  8. /**
  9. * Exceptional occurrences that are not errors.
  10. *
  1. );
  2. $context = $this->buildExceptionContext($e);
  3. method_exists($logger, $level)
  4. ? $logger->{$level}($e->getMessage(), $context)
  5. : $logger->log($level, $e->getMessage(), $context);
  6. }
  7. /**
  8. * Determine if the exception should be reported.
  1. public function handleException(Throwable $e)
  2. {
  3. self::$reservedMemory = null;
  4. try {
  5. $this->getExceptionHandler()->report($e);
  6. } catch (Exception $e) {
  7. $exceptionHandlerFailed = true;
  8. }
  9. if (static::$app->runningInConsole()) {
  1. * @return callable
  2. */
  3. protected function forwardsTo($method)
  4. {
  5. return fn (...$arguments) => static::$app
  6. ? $this->{$method}(...$arguments)
  7. : false;
  8. }
  9. /**
  10. * Determine if the error level is a deprecation.
HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}()

Stack Trace

UnexpectedValueException
UnexpectedValueException:
Writing to the log file failed: Write of 6166 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6274 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6253 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6228 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6270 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6280 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6473 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6694 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6630 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 6570 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7261 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7248 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7396 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: Writing to the log file failed: Write of 7080 bytes failed with errno=28 No space left on device
The exception occurred while attempting to log: file_put_contents(): Write of 201 bytes failed with errno=28 No space left on device
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}
Context: {"exception":{}}

  at /www/wwwroot/name.com.vn/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:193
  at Monolog\Handler\StreamHandler->write()
     (/www/wwwroot/name.com.vn/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:48)
  at Monolog\Handler\AbstractProcessingHandler->handle()
     (/www/wwwroot/name.com.vn/vendor/monolog/monolog/src/Monolog/Logger.php:400)
  at Monolog\Logger->addRecord()
     (/www/wwwroot/name.com.vn/vendor/monolog/monolog/src/Monolog/Logger.php:651)
  at Monolog\Logger->error()
     (/www/wwwroot/name.com.vn/vendor/laravel/framework/src/Illuminate/Log/Logger.php:181)
  at Illuminate\Log\Logger->writeLog()
     (/www/wwwroot/name.com.vn/vendor/laravel/framework/src/Illuminate/Log/Logger.php:94)
  at Illuminate\Log\Logger->error()
     (/www/wwwroot/name.com.vn/vendor/laravel/framework/src/Illuminate/Log/LogManager.php:645)
  at Illuminate\Log\LogManager->error()
     (/www/wwwroot/name.com.vn/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:274)
  at Illuminate\Foundation\Exceptions\Handler->report()
     (/www/wwwroot/name.com.vn/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:200)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->handleException()
     (/www/wwwroot/name.com.vn/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:272)
  at Illuminate\Foundation\Bootstrap\HandleExceptions->Illuminate\Foundation\Bootstrap\{closure}()