Sporting Events   |   Basketball

NCCA Final Four

Men's Basketball Tournament played in the US each spring between 64 college basketball teams from the National Collegiate Athletic Association.

2024-04-05 - 2024-04-08  
Atlanta GA

Eclipse is proud to offer an exclusive package during the NCAA Final Four

For some, spring means the melting of snow and blooming flowers. For sports fans, it means US college basketball's biggest event, as 68 teams from across the nation compete in a single elimination tournament in 13 cities. Hundreds of thousands of college fans will deck themselves out in their home school colours, cheering, singing and chanting as their energy helps propel the home team toward the much needed win.

About the 2020 Final Four

In 2020 the Final Four is headed South. Atlanta is eager to welcome thousands of basketball fans as they prepare for the culmination of March Madness. The two semi-final matches will take place on April 4th and the championship final will follow on April 6th. Be there to experience the pinnacle game of the College Basketball Season! Custom 2020 Final Four packages available from $2,825 per person (based on double occupancy).

PACKAGES

Custom VIP 2020 Final Four Packages

Create your ideal custom 2020 Final Four travel package with the help of our Sports Travel Specialists. Your personalized Final Four travel experience includes your preferred tickets in Mercedes-Benz Stadium for both semi-finals and the final, first-class accommodations in Atlanta, admission to the Fan Fest interactive experience, breakfast daily and much more.

Custom 2020 Final Four packages available from $2,825 per person (based on double occupancy).

Bookings

For more information, pricing, and availability, please contact your Eclipse sales representative directly by telephone.

Whoops! There was an error.
UnexpectedValueException
The stream or file "/home/eclipse/pyrocms/storage/logs/laravel-2025-04-29.log" could not be opened: failed to open stream: Disk quota exceeded UnexpectedValueException thrown with message "The stream or file "/home/eclipse/pyrocms/storage/logs/laravel-2025-04-29.log" could not be opened: failed to open stream: Disk quota exceeded" Stacktrace: #10 UnexpectedValueException in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:107 #9 Monolog\Handler\StreamHandler:write in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php:119 #8 Monolog\Handler\RotatingFileHandler:write in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php:39 #7 Monolog\Handler\AbstractProcessingHandler:handle in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php:344 #6 Monolog\Logger:addRecord in /home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php:707 #5 Monolog\Logger:error in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.php:203 #4 Illuminate\Log\Writer:writeLog in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.php:114 #3 Illuminate\Log\Writer:error in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php:113 #2 Illuminate\Foundation\Exceptions\Handler:report in /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Exception/ExceptionHandler.php:135 #1 Anomaly\Streams\Platform\Exception\ExceptionHandler:report in /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php:81 #0 Illuminate\Foundation\Bootstrap\HandleExceptions:handleException in [internal]:0
10
UnexpectedValueException
/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php107
9
Monolog\Handler\StreamHandler write
/vendor/monolog/monolog/src/Monolog/Handler/RotatingFileHandler.php119
8
Monolog\Handler\RotatingFileHandler write
/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php39
7
Monolog\Handler\AbstractProcessingHandler handle
/vendor/monolog/monolog/src/Monolog/Logger.php344
6
Monolog\Logger addRecord
/vendor/monolog/monolog/src/Monolog/Logger.php707
5
Monolog\Logger error
/vendor/laravel/framework/src/Illuminate/Log/Writer.php203
4
Illuminate\Log\Writer writeLog
/vendor/laravel/framework/src/Illuminate/Log/Writer.php114
3
Illuminate\Log\Writer error
/vendor/laravel/framework/src/Illuminate/Foundation/Exceptions/Handler.php113
2
Illuminate\Foundation\Exceptions\Handler report
/vendor/anomaly/streams-platform/src/Exception/ExceptionHandler.php135
1
Anomaly\Streams\Platform\Exception\ExceptionHandler report
/vendor/laravel/framework/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php81
0
Illuminate\Foundation\Bootstrap\HandleExceptions handleException
[internal]0
/home/eclipse/pyrocms/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 "/home/eclipse/pyrocms/storage/logs/laravel-2025-04-29.log" could not be opened: failed to open stream: Disk quota exceeded"
    
/home/eclipse/pyrocms/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(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/final-four"
        "identifier" => "f734e839-8041-4666-8313-54c0714be80b"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
          #code: 0
          #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1745903442 {
        date: 2025-04-29 05:10:42.849788 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-04-29 05:10:42] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/final-four","identifier":"f734e839-8041-4666-8313-54c0714be80b","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded at /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/eclipse/p...', 122, Array)\n
        #1 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('59RVwWnF08Z1jhI...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/eclipse/pyrocms/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 /home/eclipse/pyrocms/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 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/CacheKernel.php(87): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/HttpCache.php(55): Anomaly\\Streams\\Platform\\Http\\CacheKernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #9 /home/eclipse/pyrocms/public/index.php(67): Anomaly\\Streams\\Platform\\Http\\HttpCache->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #10 {main}\n
        "} \n
        """
    ]
    
/home/eclipse/pyrocms/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(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/final-four"
        "identifier" => "f734e839-8041-4666-8313-54c0714be80b"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
          #code: 0
          #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1745903442 {
        date: 2025-04-29 05:10:42.849788 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-04-29 05:10:42] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/final-four","identifier":"f734e839-8041-4666-8313-54c0714be80b","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded at /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/eclipse/p...', 122, Array)\n
        #1 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('59RVwWnF08Z1jhI...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/eclipse/pyrocms/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 /home/eclipse/pyrocms/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 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/CacheKernel.php(87): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/HttpCache.php(55): Anomaly\\Streams\\Platform\\Http\\CacheKernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #9 /home/eclipse/pyrocms/public/index.php(67): Anomaly\\Streams\\Platform\\Http\\HttpCache->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #10 {main}\n
        "} \n
        """
    ]
    
/home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php
        }
        $ts->setTimezone(static::$timezone);
 
        $record = array(
            'message' => (string) $message,
            'context' => $context,
            'level' => $level,
            'level_name' => $levelName,
            'channel' => $this->name,
            'datetime' => $ts,
            'extra' => array(),
        );
 
        try {
            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);
            }
        } catch (Exception $e) {
            $this->handleException($e, $record);
        }
 
        return true;
    }
 
    /**
     * Ends a log cycle and frees all resources used by handlers.
     *
     * Closing a Handler means flushing all buffers and freeing any open resources/handles.
     * Handlers that have been closed should be able to accept log records again and re-open
     * themselves on demand, but this may not always be possible depending on implementation.
     *
     * This is useful at the end of a request and will be called automatically on every handler
Arguments
  1. array:8 [
      "message" => "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/final-four"
        "identifier" => "f734e839-8041-4666-8313-54c0714be80b"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
          #code: 0
          #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
          #line: 122
          #severity: E_WARNING
        }
      ]
      "level" => 400
      "level_name" => "ERROR"
      "channel" => "production"
      "datetime" => DateTime @1745903442 {
        date: 2025-04-29 05:10:42.849788 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-04-29 05:10:42] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/final-four","identifier":"f734e839-8041-4666-8313-54c0714be80b","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded at /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php:122)\n
        [stacktrace]\n
        #0 [internal function]: Illuminate\\Foundation\\Bootstrap\\HandleExceptions->handleError(2, 'file_put_conten...', '/home/eclipse/p...', 122, Array)\n
        #1 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php(122): file_put_contents('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', 2)\n
        #2 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/FileSessionHandler.php(83): Illuminate\\Filesystem\\Filesystem->put('/home/eclipse/p...', 'a:3:{s:6:\"_toke...', true)\n
        #3 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Store.php(128): Illuminate\\Session\\FileSessionHandler->write('59RVwWnF08Z1jhI...', 'a:3:{s:6:\"_toke...')\n
        #4 /home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Session/Middleware/StartSession.php(87): Illuminate\\Session\\Store->save()\n
        #5 /home/eclipse/pyrocms/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 /home/eclipse/pyrocms/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 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/CacheKernel.php(87): Illuminate\\Foundation\\Http\\Kernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #8 /home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Http/HttpCache.php(55): Anomaly\\Streams\\Platform\\Http\\CacheKernel->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #9 /home/eclipse/pyrocms/public/index.php(67): Anomaly\\Streams\\Platform\\Http\\HttpCache->terminate(Object(Illuminate\\Http\\Request), Object(Illuminate\\Http\\Response))\n
        #10 {main}\n
        "} \n
        """
    ]
    
/home/eclipse/pyrocms/vendor/monolog/monolog/src/Monolog/Logger.php
     * @param  array  $context The log context
     * @return bool   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 bool   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 bool   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(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/events/final-four"
      "identifier" => "f734e839-8041-4666-8313-54c0714be80b"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.php
     * @return void
     */
    public function write($level, $message, array $context = [])
    {
        $this->writeLog($level, $message, $context);
    }
 
    /**
     * Write a message to Monolog.
     *
     * @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->monolog->{$level}($message, $context);
    }
 
    /**
     * Register a file log handler.
     *
     * @param  string  $path
     * @param  string  $level
     * @return void
     */
    public function useFiles($path, $level = 'debug')
    {
        $this->monolog->pushHandler($handler = new StreamHandler($path, $this->parseLevel($level)));
 
        $handler->setFormatter($this->getDefaultFormatter());
    }
 
    /**
     * Register a daily file log handler.
     *
     * @param  string  $path
Arguments
  1. "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/events/final-four"
      "identifier" => "f734e839-8041-4666-8313-54c0714be80b"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Log/Writer.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(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/events/final-four"
      "identifier" => "f734e839-8041-4666-8313-54c0714be80b"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/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; // throw the original exception
        }
 
        $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(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/events/final-four"
      "identifier" => "f734e839-8041-4666-8313-54c0714be80b"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
        #code: 0
        #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
        #line: 122
        #severity: E_WARNING
      }
    ]
    
/home/eclipse/pyrocms/vendor/anomaly/streams-platform/src/Exception/ExceptionHandler.php
            'streams::errors/error',
            compact('id', 'code', 'name', 'message', 'summary'),
            $code,
            $headers
        );
    }
 
    /**
     * Report the exception.
     *
     * But first make sure it's stashed.
     *
     * @param Exception $e
     * @return mixed
     */
    public function report(Exception $e)
    {
        $this->original = $e;
 
        return parent::report($e);
    }
 
    /**
     * Get the default context variables for logging.
     *
     * @return array
     */
    protected function context()
    {
        try {
            return array_filter(
                [
                    'user'       => \Auth::id(),
                    'email'      => \Auth::user() ? \Auth::user()->email : null,
                    'url'        => request() ? request()->fullUrl() : null,
                    'identifier' => $this->container->make(ExceptionIdentifier::class)->identify($this->original),
                ]
            );
        } catch (Throwable $e) {
            return [];
Arguments
  1. ErrorException {
      #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
      #code: 0
      #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
/home/eclipse/pyrocms/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(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
      #code: 0
      #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    
[internal]
Arguments
  1. ErrorException {
      #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/59RVwWnF08Z1jhIHgomsdeHl3Z1SHrCo3kKrfZGh): failed to open stream: Disk quota exceeded"
      #code: 0
      #file: "/home/eclipse/pyrocms/vendor/laravel/framework/src/Illuminate/Filesystem/Filesystem.php"
      #line: 122
      #severity: E_WARNING
    }
    

Environment & details:

empty
empty
empty
Key Value
laravel_session
"eyJpdiI6ImsyWDFVRlNQOEhcL2dESGh1bWdSXC90UT09IiwidmFsdWUiOiJGQjh2eFZGNkpLSmhmRFNGb015dUtZWU1IMlRvaU9pM0dXYm5OVDN3OEJUeW50c29KSUlTZnV1a2R3MTlnZUdMaG9iUFpBWjhBdldqblRnYkJWRlJaQT09IiwibWFjIjoiNmQ5ZGMwMjY3YjhmYzc5OWVkMzY4Y2Q3MTJjOTIxMTBlNDdiNTFlZmJjZWFlNjU0MzkyMzlhOTg0ZjZhMzBmZSJ9"
XSRF-TOKEN
"eyJpdiI6IjFEWG5RMENvVXZtSjZIRTFRVzFUY2c9PSIsInZhbHVlIjoicHh3OWJKVlBiUnozM0NlUzlSaFcrdG9XSzBwOHE3OUc0bHozeE9Jck52Mys3RVY2SFZKS2NCcXNrOHJPUkJvSU0wSGlIb1ZnYnNhck5jd3pcLzhVTUVnPT0iLCJtYWMiOiI1ZjlkOGYyOGJjOTY1OTM0MTIxYjBiMmU2YzVkNTBiYWRmOWUwOTkzMGQ2ZDY5NzJkNzg3ZGVhMGM2MDlhY2IxIn0="
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_COOKIE
"laravel_session=eyJpdiI6ImsyWDFVRlNQOEhcL2dESGh1bWdSXC90UT09IiwidmFsdWUiOiJGQjh2eFZGNkpLSmhmRFNGb015dUtZWU1IMlRvaU9pM0dXYm5OVDN3OEJUeW50c29KSUlTZnV1a2R3MTlnZUdMaG9iUFpBWjhBdldqblRnYkJWRlJaQT09IiwibWFjIjoiNmQ5ZGMwMjY3YjhmYzc5OWVkMzY4Y2Q3MTJjOTIxMTBlNDdiNTFlZmJjZWFlNjU0MzkyMzlhOTg0ZjZhMzBmZSJ9; XSRF-TOKEN=eyJpdiI6IjFEWG5RMENvVXZtSjZIRTFRVzFUY2c9PSIsInZhbHVlIjoicHh3OWJKVlBiUnozM0NlUzlSaFcrdG9XSzBwOHE3OUc0bHozeE9Jck52Mys3RVY2SFZKS2NCcXNrOHJPUkJvSU0wSGlIb1ZnYnNhck5jd3pcLzhVTUVnPT0iLCJtYWMiOiI1ZjlkOGYyOGJjOTY1OTM0MTIxYjBiMmU2YzVkNTBiYWRmOWUwOTkzMGQ2ZDY5NzJkNzg3ZGVhMGM2MDlhY2IxIn0%3D"
HTTP_HOST
"eclipsesportsevents.com"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
HTTP_X_HTTPS
"1"
DOCUMENT_ROOT
"/home/eclipse/public_html"
REMOTE_ADDR
"18.221.100.57"
REMOTE_PORT
"41031"
SERVER_ADDR
"193.35.59.50"
SERVER_NAME
"eclipsesportsevents.com"
SERVER_ADMIN
"webmaster@eclipsesportsevents.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/events/final-four"
REDIRECT_URL
"/events/final-four"
REDIRECT_REQUEST_METHOD
"GET"
HTTPS
"on"
HTTP_AUTHORIZATION
""
REDIRECT_STATUS
"200"
X_SPDY
"HTTP2"
SSL_PROTOCOL
"TLSv1.3"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_CIPHER_ALGKEYSIZE
"256"
SCRIPT_FILENAME
"/home/eclipse/public_html/index.php"
QUERY_STRING
""
SCRIPT_URI
"https://eclipsesportsevents.com/events/final-four"
SCRIPT_URL
"/events/final-four"
SCRIPT_NAME
"/index.php"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
REQUEST_METHOD
"GET"
X-LSCACHE
"on"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1745903442.0699
REQUEST_TIME
1745903442
ORIGINAL_REQUEST_URI
"/events/final-four"
APP_ENV
"production"
APP_DEBUG
"true"
DEBUG_BAR
"false"
APP_KEY
"base64:UkFMZrdpmNNqzYXI0P9iv5xATpaDtcI2/RRIHSwBsnA="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"eclipse_pyrocms"
DB_USERNAME
"eclipse_db"
DB_PASSWORD
"xWke3DU5BWCf8YsHhAmJZXitKf"
APPLICATION_NAME
"Default"
APPLICATION_REFERENCE
"default"
APPLICATION_DOMAIN
"eclipsesportsevents.com"
LAZY_TRANSLATIONS
"true"
DB_CACHE
"true"
LOCALE
"en"
TIMEZONE
"UTC"
INSTALLED
"true"
RECAPTCHA_SITE_KEY
"6LfbqbIUAAAAAGkx8lPCN_qMpGWaHdgMLOostvlx"
RECAPTCHA_SECRET_KEY
"6LfbqbIUAAAAAOoYaE8CVzB-rR9ww4kIaioF8AS-"
RECAPTCHA_THRESHOLD
"0.5"
RECAPTCHA_HIDE_BADGE
"false"
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
APP_ENV
"production"
APP_DEBUG
"true"
DEBUG_BAR
"false"
APP_KEY
"base64:UkFMZrdpmNNqzYXI0P9iv5xATpaDtcI2/RRIHSwBsnA="
DB_CONNECTION
"mysql"
DB_HOST
"localhost"
DB_DATABASE
"eclipse_pyrocms"
DB_USERNAME
"eclipse_db"
DB_PASSWORD
"xWke3DU5BWCf8YsHhAmJZXitKf"
APPLICATION_NAME
"Default"
APPLICATION_REFERENCE
"default"
APPLICATION_DOMAIN
"eclipsesportsevents.com"
LAZY_TRANSLATIONS
"true"
DB_CACHE
"true"
LOCALE
"en"
TIMEZONE
"UTC"
INSTALLED
"true"
RECAPTCHA_SITE_KEY
"6LfbqbIUAAAAAGkx8lPCN_qMpGWaHdgMLOostvlx"
RECAPTCHA_SECRET_KEY
"6LfbqbIUAAAAAOoYaE8CVzB-rR9ww4kIaioF8AS-"
RECAPTCHA_THRESHOLD
"0.5"
RECAPTCHA_HIDE_BADGE
"false"
0. Whoops\Handler\PrettyPageHandler