加盟、业务咨询 0871-65193251

首页 上一页 下一页 尾页 共7页 当前处于第1页
版权所有©2017 云南嘉富尔拍卖有限公司 .保留所有权利。
技术支持
Whoops! There was an error.
UnexpectedValueException
The stream or file "D:\LanduiYUN\ynjfo521\wwwroot\storage\logs/laravel-2024-03-29.log" could not be opened: failed to open stream: No space left on device UnexpectedValueException thrown with message "The stream or file "D:\LanduiYUN\ynjfo521\wwwroot\storage\logs/laravel-2024-03-29.log" could not be opened: failed to open stream: No space left on device" Stacktrace: #11 UnexpectedValueException in D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php:107 #10 Monolog\Handler\StreamHandler:write in D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Handler\RotatingFileHandler.php:107 #9 Monolog\Handler\RotatingFileHandler:write in D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php:37 #8 Monolog\Handler\AbstractProcessingHandler:handle in D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Logger.php:337 #7 Monolog\Logger:addRecord in D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Logger.php:616 #6 Monolog\Logger:error in D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Log\Logger.php:179 #5 Illuminate\Log\Logger:writeLog in D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Log\Logger.php:90 #4 Illuminate\Log\Logger:error in D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Log\LogManager.php:519 #3 Illuminate\Log\LogManager:error in D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php:113 #2 Illuminate\Foundation\Exceptions\Handler:report in D:\LanduiYUN\ynjfo521\wwwroot\app\Exceptions\Handler.php:37 #1 App\Exceptions\Handler:report in D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
11
UnexpectedValueException
…\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php
107
10
Monolog
\
Handler
\
StreamHandler
write
…\vendor\monolog\monolog\src\Monolog\Handler\RotatingFileHandler.php
107
9
Monolog
\
Handler
\
RotatingFileHandler
write
…\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php
37
8
Monolog
\
Handler
\
AbstractProcessingHandler
handle
…\vendor\monolog\monolog\src\Monolog\Logger.php
337
7
Monolog
\
Logger
addRecord
…\vendor\monolog\monolog\src\Monolog\Logger.php
616
6
Monolog
\
Logger
error
…\vendor\laravel\framework\src\Illuminate\Log\Logger.php
179
5
Illuminate
\
Log
\
Logger
writeLog
…\vendor\laravel\framework\src\Illuminate\Log\Logger.php
90
4
Illuminate
\
Log
\
Logger
error
…\vendor\laravel\framework\src\Illuminate\Log\LogManager.php
519
3
Illuminate
\
Log
\
LogManager
error
…\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php
113
2
Illuminate
\
Foundation
\
Exceptions
\
Handler
report
…\app\Exceptions\Handler.php
37
1
App
\
Exceptions
\
Handler
report
…\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php
81
0
Illuminate
\
Foundation
\
Bootstrap
\
HandleExceptions
handleException
[internal]
0
D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Handler\StreamHandler.php
    /**
     * {@inheritdoc}
     */
    protected function write(array $record)
    {
        if (!is_resource($this->stream)) {
            if (null === $this->url || '' === $this->url) {
                throw new \LogicException('Missing stream url, the stream can not be opened. This may be caused by a premature call to close().');
            }
            $this->createDir();
            $this->errorMessage = null;
            set_error_handler(array($this, 'customErrorHandler'));
            $this->stream = fopen($this->url, 'a');
            if ($this->filePermission !== null) {
                @chmod($this->url, $this->filePermission);
            }
            restore_error_handler();
            if (!is_resource($this->stream)) {
                $this->stream = null;
                throw new \UnexpectedValueException(sprintf('The stream or file "%s" could not be opened: '.$this->errorMessage, $this->url));
            }
        }
 
        if ($this->useLocking) {
            // ignoring errors here, there's not much we can do about them
            flock($this->stream, LOCK_EX);
        }
 
        $this->streamWrite($this->stream, $record);
 
        if ($this->useLocking) {
            flock($this->stream, LOCK_UN);
        }
    }
 
    /**
     * Write to stream
     * @param resource $stream
     * @param array $record
     */
Arguments
  1. "The stream or file "D:\LanduiYUN\ynjfo521\wwwroot\storage\logs/laravel-2024-03-29.log" could not be opened: failed to open stream: No space left on device"
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Handler\RotatingFileHandler.php
        $this->url = $this->getTimedFilename();
        $this->close();
    }
 
    /**
     * {@inheritdoc}
     */
    protected function write(array $record)
    {
        // on the first record written, if the log is new, we should rotate (once per day)
        if (null === $this->mustRotate) {
            $this->mustRotate = !file_exists($this->url);
        }
 
        if ($this->nextRotation < $record['datetime']) {
            $this->mustRotate = true;
            $this->close();
        }
 
        parent::write($record);
    }
 
    /**
     * Rotates the files.
     */
    protected function rotate()
    {
        // update filename
        $this->url = $this->getTimedFilename();
        $this->nextRotation = new \DateTime('tomorrow');
 
        // skip GC of old logs if files are unlimited
        if (0 === $this->maxFiles) {
            return;
        }
 
        $logFiles = glob($this->getGlobPattern());
        if ($this->maxFiles >= count($logFiles)) {
            // no files to remove
            return;
Arguments
  1. array:8 [
      "message" => "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
      "context" => array:1 [
        "exception" => ErrorException {
          #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
          #code: 0
          #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "local"
      "datetime" => DateTime @1711655202 {
        date: 2024-03-29 03:46:42.184620 PRC (+08:00)
      }
      "extra" => []
      "formatted" => """
        [2024-03-29 03:46:42] local.ERROR: file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(D:\\LanduiYUN\\ynjfo521\\wwwroot\\storage\\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device at D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', 'D:\\\\LanduiYUN\\\\yn...', 122, Array)\n
        #1 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php(122): file_put_contents('D:\\\\LanduiYUN\\\\yn...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('D:\\\\LanduiYUN\\\\yn...', 'a:3:{s:6:\"_toke...', true)\n
        #3 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php(129): Illuminate\\Session\\FileSessionHandler->write('cJKmntGMPjckflK...', 'a:3:{s:6:\"_toke...')\n
        #4 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 D:\\LanduiYUN\\ynjfo521\\wwwroot\\public\\index.php(59): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Handler\AbstractProcessingHandler.php
 *
 * @author Jordi Boggiano <j.boggiano@seld.be>
 * @author Christophe Coevoet <stof@notk.org>
 */
abstract class AbstractProcessingHandler extends AbstractHandler
{
    /**
     * {@inheritdoc}
     */
    public function handle(array $record)
    {
        if (!$this->isHandling($record)) {
            return false;
        }
 
        $record = $this->processRecord($record);
 
        $record['formatted'] = $this->getFormatter()->format($record);
 
        $this->write($record);
 
        return false === $this->bubble;
    }
 
    /**
     * Writes the record down to the log of the implementing handler
     *
     * @param  array $record
     * @return void
     */
    abstract protected function write(array $record);
 
    /**
     * Processes a record.
     *
     * @param  array $record
     * @return array
     */
    protected function processRecord(array $record)
    {
Arguments
  1. array:8 [
      "message" => "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
      "context" => array:1 [
        "exception" => ErrorException {
          #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
          #code: 0
          #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "local"
      "datetime" => DateTime @1711655202 {
        date: 2024-03-29 03:46:42.184620 PRC (+08:00)
      }
      "extra" => []
      "formatted" => """
        [2024-03-29 03:46:42] local.ERROR: file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(D:\\LanduiYUN\\ynjfo521\\wwwroot\\storage\\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device at D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', 'D:\\\\LanduiYUN\\\\yn...', 122, Array)\n
        #1 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php(122): file_put_contents('D:\\\\LanduiYUN\\\\yn...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('D:\\\\LanduiYUN\\\\yn...', 'a:3:{s:6:\"_toke...', true)\n
        #3 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php(129): Illuminate\\Session\\FileSessionHandler->write('cJKmntGMPjckflK...', 'a:3:{s:6:\"_toke...')\n
        #4 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 D:\\LanduiYUN\\ynjfo521\\wwwroot\\public\\index.php(59): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Logger.php
            $ts = new \DateTime(null, static::$timezone);
        }
        $ts->setTimezone(static::$timezone);
 
        $record = array(
            'message' => (string) $message,
            'context' => $context,
            'level' => $level,
            'level_name' => $levelName,
            'channel' => $this->name,
            'datetime' => $ts,
            'extra' => array(),
        );
 
        foreach ($this->processors as $processor) {
            $record = call_user_func($processor, $record);
        }
 
        while ($handler = current($this->handlers)) {
            if (true === $handler->handle($record)) {
                break;
            }
 
            next($this->handlers);
        }
 
        return true;
    }
 
    /**
     * Adds a log record at the DEBUG level.
     *
     * @param  string  $message The log message
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function addDebug($message, array $context = array())
    {
        return $this->addRecord(static::DEBUG, $message, $context);
    }
Arguments
  1. array:8 [
      "message" => "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
      "context" => array:1 [
        "exception" => ErrorException {
          #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
          #code: 0
          #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "local"
      "datetime" => DateTime @1711655202 {
        date: 2024-03-29 03:46:42.184620 PRC (+08:00)
      }
      "extra" => []
      "formatted" => """
        [2024-03-29 03:46:42] local.ERROR: file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device {"exception":"[object] (ErrorException(code: 0): file_put_contents(D:\\LanduiYUN\\ynjfo521\\wwwroot\\storage\\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device at D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', 'D:\\\\LanduiYUN\\\\yn...', 122, Array)\n
        #1 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Filesystem\\Filesystem.php(122): file_put_contents('D:\\\\LanduiYUN\\\\yn...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('D:\\\\LanduiYUN\\\\yn...', 'a:3:{s:6:\"_toke...', true)\n
        #3 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Store.php(129): Illuminate\\Session\\FileSessionHandler->write('cJKmntGMPjckflK...', 'a:3:{s:6:\"_toke...')\n
        #4 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Session\\Middleware\\StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(218): Illuminate\\Session\\Middleware\\StartSession->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #6 D:\\LanduiYUN\\ynjfo521\\wwwroot\\vendor\\laravel\\framework\\src\\Illuminate\\Foundation\\Http\\Kernel.php(189): Illuminate\\Foundation\\Http\\Kernel->terminateMiddleware(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #7 D:\\LanduiYUN\\ynjfo521\\wwwroot\\public\\index.php(59): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 {main}\n
        "} \n
        """
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\monolog\monolog\src\Monolog\Logger.php
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function err($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $message, $context);
    }
 
    /**
     * Adds a log record at the ERROR level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param  string  $message The log message
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function error($message, array $context = array())
    {
        return $this->addRecord(static::ERROR, $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
     *
     * @param  string  $message The log message
     * @param  array   $context The log context
     * @return Boolean Whether the record has been processed
     */
    public function crit($message, array $context = array())
    {
        return $this->addRecord(static::CRITICAL, $message, $context);
    }
 
    /**
     * Adds a log record at the CRITICAL level.
     *
     * This method allows for compatibility with common interfaces.
Arguments
  1. 400
    
  2. "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
    
  3. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
        #code: 0
        #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Log\Logger.php
     * @return void
     */
    public function write($level, $message, array $context = [])
    {
        $this->writeLog($level, $message, $context);
    }
 
    /**
     * Write a message to the log.
     *
     * @param  string  $level
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    protected function writeLog($level, $message, $context)
    {
        $this->fireLogEvent($level, $message = $this->formatMessage($message), $context);
 
        $this->logger->{$level}($message, $context);
    }
 
    /**
     * Register a new callback handler for when a log event is triggered.
     *
     * @param  \Closure  $callback
     * @return void
     *
     * @throws \RuntimeException
     */
    public function listen(Closure $callback)
    {
        if (! isset($this->dispatcher)) {
            throw new RuntimeException('Events dispatcher has not been set.');
        }
 
        $this->dispatcher->listen(MessageLogged::class, $callback);
    }
 
    /**
Arguments
  1. "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
    
  2. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
        #code: 0
        #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Log\Logger.php
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function critical($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log an error message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function error($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a warning message to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
     */
    public function warning($message, array $context = [])
    {
        $this->writeLog(__FUNCTION__, $message, $context);
    }
 
    /**
     * Log a notice to the logs.
     *
     * @param  string  $message
     * @param  array  $context
     * @return void
Arguments
  1. "error"
    
  2. "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
    
  3. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
        #code: 0
        #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Log\LogManager.php
     *
     * @return void
     */
    public function critical($message, array $context = [])
    {
        return $this->driver()->critical($message, $context);
    }
 
    /**
     * Runtime errors that do not require immediate action but should typically
     * be logged and monitored.
     *
     * @param string $message
     * @param array  $context
     *
     * @return void
     */
    public function error($message, array $context = [])
    {
        return $this->driver()->error($message, $context);
    }
 
    /**
     * Exceptional occurrences that are not errors.
     *
     * Example: Use of deprecated APIs, poor use of an API, undesirable things
     * that are not necessarily wrong.
     *
     * @param string $message
     * @param array  $context
     *
     * @return void
     */
    public function warning($message, array $context = [])
    {
        return $this->driver()->warning($message, $context);
    }
 
    /**
     * Normal but significant events.
Arguments
  1. "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
    
  2. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
        #code: 0
        #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Foundation\Exceptions\Handler.php
     */
    public function report(Exception $e)
    {
        if ($this->shouldntReport($e)) {
            return;
        }
 
        if (method_exists($e, 'report')) {
            return $e->report();
        }
 
        try {
            $logger = $this->container->make(LoggerInterface::class);
        } catch (Exception $ex) {
            throw $e;
        }
 
        $logger->error(
            $e->getMessage(),
            array_merge($this->context(), ['exception' => $e]
        ));
    }
 
    /**
     * Determine if the exception should be reported.
     *
     * @param  \Exception  $e
     * @return bool
     */
    public function shouldReport(Exception $e)
    {
        return ! $this->shouldntReport($e);
    }
 
    /**
     * Determine if the exception is in the "do not report" list.
     *
     * @param  \Exception  $e
     * @return bool
     */
Arguments
  1. "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
    
  2. array:1 [
      "exception" => ErrorException {
        #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
        #code: 0
        #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
D:\LanduiYUN\ynjfo521\wwwroot\app\Exceptions\Handler.php
 
    /**
     * A list of the inputs that are never flashed for validation exceptions.
     *
     * @var array
     */
    protected $dontFlash = [
        'password',
        'password_confirmation',
    ];
 
    /**
     * Report or log an exception.
     *
     * @param  \Exception  $exception
     * @return void
     */
    public function report(Exception $exception)
    {
        parent::report($exception);
    }
 
    /**
     * Render an exception into an HTTP response.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Exception  $exception
     * @return \Illuminate\Http\Response
     */
    public function render($request, Exception $exception)
    {
        return parent::render($request, $exception);
    }
}
 
Arguments
  1. ErrorException {
      #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
      #code: 0
      #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php
    }
 
    /**
     * Handle an uncaught exception from the application.
     *
     * Note: Most exceptions can be handled via the try / catch block in
     * the HTTP and Console kernels. But, fatal error exceptions must
     * be handled differently since they are not normal exceptions.
     *
     * @param  \Throwable  $e
     * @return void
     */
    public function handleException($e)
    {
        if (! $e instanceof Exception) {
            $e = new FatalThrowableError($e);
        }
 
        try {
            $this->getExceptionHandler()->report($e);
        } catch (Exception $e) {
            //
        }
 
        if ($this->app->runningInConsole()) {
            $this->renderForConsole($e);
        } else {
            $this->renderHttpResponse($e);
        }
    }
 
    /**
     * Render an exception to the console.
     *
     * @param  \Exception  $e
     * @return void
     */
    protected function renderForConsole(Exception $e)
    {
        $this->getExceptionHandler()->renderForConsole(new ConsoleOutput, $e);
Arguments
  1. ErrorException {
      #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
      #code: 0
      #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
[internal]
Arguments
  1. ErrorException {
      #message: "file_put_contents(D:\LanduiYUN\ynjfo521\wwwroot\storage\framework/sessions/cJKmntGMPjckflKDFGm1CzSygP4ZOPubqBDDsPRM): failed to open stream: No space left on device"
      #code: 0
      #file: "D:\LanduiYUN\ynjfo521\wwwroot\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    

Environment & details:

Key Value
page
"1"
empty
empty
empty
empty
Key Value
_FCGI_X_PIPE_
"\\.\pipe\IISFCGI-28557539-5aeb-4fc9-839f-97ff6ba7cde7"
PHP_FCGI_MAX_REQUESTS
"10000"
PHPRC
"c:\php\7.1"
ALLUSERSPROFILE
"C:\ProgramData"
APPDATA
"C:\Windows\system32\config\systemprofile\AppData\Roaming"
APP_POOL_CONFIG
"C:\inetpub\temp\apppools\.NET v4.5 Classic\.NET v4.5 Classic.config"
APP_POOL_ID
".NET v4.5 Classic"
CommonProgramFiles
"C:\Program Files (x86)\Common Files"
CommonProgramFiles(x86)
"C:\Program Files (x86)\Common Files"
CommonProgramW6432
"C:\Program Files\Common Files"
COMPUTERNAME
"LANDUI-SERVER1"
ComSpec
"C:\Windows\system32\cmd.exe"
LOCALAPPDATA
"C:\Windows\system32\config\systemprofile\AppData\Local"
NUMBER_OF_PROCESSORS
"24"
OS
"Windows_NT"
Path
"C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;E:\Program Files\Microsoft SQL Server\110\DTS\Binn\;E:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\;E:\Program Files\Microsoft SQL Server\110\Tools\Binn\;E:\Program Files (x86)\Microsoft SQL Server\110\Tools\Binn\ManagementStudio\;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PrivateAssemblies\;E:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn\;E:\Program Files\MySQL\MySQL Server 5.6\bin;C:\Windows\system32\config\systemprofile\AppData\Local\Microsoft\WindowsApps"
PATHEXT
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC"
PROCESSOR_ARCHITECTURE
"x86"
PROCESSOR_ARCHITEW6432
"AMD64"
PROCESSOR_IDENTIFIER
"Intel64 Family 6 Model 62 Stepping 4, GenuineIntel"
PROCESSOR_LEVEL
"6"
PROCESSOR_REVISION
"3e04"
ProgramData
"C:\ProgramData"
ProgramFiles
"C:\Program Files (x86)"
ProgramFiles(x86)
"C:\Program Files (x86)"
ProgramW6432
"C:\Program Files"
PSModulePath
"C:\Program Files\WindowsPowerShell\Modules;C:\Windows\system32\WindowsPowerShell\v1.0\Modules;E:\Program Files (x86)\Microsoft SQL Server\110\Tools\PowerShell\Modules\"
PUBLIC
"C:\Users\Public"
SystemDrive
"C:"
SystemRoot
"C:\Windows"
TEMP
"C:\Windows\TEMP"
TMP
"C:\Windows\TEMP"
USERDOMAIN
"WORKGROUP"
USERNAME
"LANDUI-SERVER1$"
USERPROFILE
"C:\Windows\system32\config\systemprofile"
windir
"C:\Windows"
ORIG_PATH_INFO
"/index.php"
URL
"/index.php"
SERVER_SOFTWARE
"Microsoft-IIS/10.0"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_PORT_SECURE
"0"
SERVER_PORT
"80"
SERVER_NAME
"ynjfo.com"
SCRIPT_NAME
"/index.php"
SCRIPT_FILENAME
"D:\LanduiYUN\ynjfo521\wwwroot\public\index.php"
REQUEST_URI
"/index/notice_list?page=1&"
REQUEST_METHOD
"GET"
REMOTE_USER
""
REMOTE_PORT
"58146"
REMOTE_HOST
"44.204.34.64"
REMOTE_ADDR
"44.204.34.64"
QUERY_STRING
"page=1&"
PATH_TRANSLATED
"D:\LanduiYUN\ynjfo521\wwwroot\public\index.php"
LOGON_USER
""
LOCAL_ADDR
"103.47.80.120"
INSTANCE_META_PATH
"/LM/W3SVC/53188577"
INSTANCE_NAME
"YNJFO521"
INSTANCE_ID
"53188577"
HTTPS_SERVER_SUBJECT
""
HTTPS_SERVER_ISSUER
""
HTTPS_SECRETKEYSIZE
""
HTTPS_KEYSIZE
""
HTTPS
"off"
GATEWAY_INTERFACE
"CGI/1.1"
DOCUMENT_ROOT
"D:\LanduiYUN\ynjfo521\wwwroot\public"
CONTENT_TYPE
""
CONTENT_LENGTH
"0"
CERT_SUBJECT
""
CERT_SERIALNUMBER
""
CERT_ISSUER
""
CERT_FLAGS
""
CERT_COOKIE
""
AUTH_USER
""
AUTH_PASSWORD
""
AUTH_TYPE
""
APPL_PHYSICAL_PATH
"D:\LanduiYUN\ynjfo521\wwwroot\public\"
APPL_MD_PATH
"/LM/W3SVC/53188577/ROOT"
IIS_UrlRewriteModule
"7,1,1993,2336"
WEBSOCKET_VERSION
"13"
UNENCODED_URL
"/index/notice_list?page=1&"
IIS_WasUrlRewritten
"1"
HTTP_X_ORIGINAL_URL
"/index/notice_list?page=1&"
HTTP_USER_AGENT
"claudebot"
HTTP_HOST
"ynjfo.com"
HTTP_ACCEPT
"*/*"
HTTP_CONTENT_LENGTH
"0"
FCGI_ROLE
"RESPONDER"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1711655201.9694
REQUEST_TIME
1711655201
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:l1JPf9iF+G6Z9B1tck0HwxlxCHufbs9b62VJq7YrufA="
APP_DEBUG
"1"
APP_URL
"http://localhost"
LOG_CHANNEL
"daily"
DB_CONNECTION
"mysql"
DB_HOST
"103.47.80.120"
DB_PORT
"3306"
DB_DATABASE
"a07050444557f8"
DB_USERNAME
"a07050444557f8"
DB_PASSWORD
"7ea4dd78"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
Key Value
APP_NAME
"Laravel"
APP_ENV
"local"
APP_KEY
"base64:l1JPf9iF+G6Z9B1tck0HwxlxCHufbs9b62VJq7YrufA="
APP_DEBUG
"1"
APP_URL
"http://localhost"
LOG_CHANNEL
"daily"
DB_CONNECTION
"mysql"
DB_HOST
"103.47.80.120"
DB_PORT
"3306"
DB_DATABASE
"a07050444557f8"
DB_USERNAME
"a07050444557f8"
DB_PASSWORD
"7ea4dd78"
BROADCAST_DRIVER
"log"
CACHE_DRIVER
"file"
SESSION_DRIVER
"file"
SESSION_LIFETIME
"120"
QUEUE_DRIVER
"sync"
REDIS_HOST
"127.0.0.1"
REDIS_PASSWORD
"null"
REDIS_PORT
"6379"
MAIL_DRIVER
"smtp"
MAIL_HOST
"smtp.mailtrap.io"
MAIL_PORT
"2525"
MAIL_USERNAME
"null"
MAIL_PASSWORD
"null"
MAIL_ENCRYPTION
"null"
PUSHER_APP_ID
""
PUSHER_APP_KEY
""
PUSHER_APP_SECRET
""
PUSHER_APP_CLUSTER
"mt1"
MIX_PUSHER_APP_KEY
""
MIX_PUSHER_APP_CLUSTER
"mt1"
0. Whoops\Handler\PrettyPageHandler