Sporting Events   |   Golf

Masters 2025

The Masters is the most sought after, bucket list event in world golf. Eclipse has been providing executive packages with fully customized daily schedules for 25 years. Come join us!

2025-04-10 - 2025-04-13  
Augusta GA

Exclusive Hospitality Package

The Event

The Masters Golf Tournament has been synonymous with greatness and excellence since its inception in 1934. Played annually at one of the world's most private and iconic golf courses, Augusta National Golf Club, The Masters is the first golf major of the year. The blooming azaleas an towering pines at Augusta National have framed some of golf's most memorable moments. The green jacket, arguably one of the most coveted prizes in all of sports, is one of the many traditions and customs that make The Masters truly unique. With a resurgent Tiger roar still echoing around Amen Corner, access to The Masters has never been more in demand!

The Course

The Augusta National Golf Course is largely the result of the vision of Bobby Jones. Having retired from championship golf in 1930, Jones sought to achieve two of his longtime goals: to build a golf course and to serve golf by hosting a national tournament. He realized these ambitions by teaming up with Clifford Roberts to first construct and then host the Augusta National Invitation Tournament in 1934. The tournament (renamed The Masters in 1939) has been held every year since then, with the exception of 1943-45, and is often considered the most prestigious of golf's four major championships. Its sweeping fairways and signature, lightning-quick greens make the course instantly recognizable around the globe. With a reputation unparalleled in the world of golf, including a consistent ranking in the top three of Golf Digest's list of the greatest American courses, Augusta National is the perfect host of golf's premier event. 

PACKAGES

US Masters Package

Full Package Includes:

  • All local airport transfers
  • Executive style private house
  • Private chef
  • Fully stocked open bar
  • Official daily tournament badges
  • Breakfast and evening dinner served at private home
  • All day transfers to and from Augusta National
  • Tee times available at local courses
  • Fully customized flexible daily schedule



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-05-09.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-05-09.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-05-09.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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/masters"
        "identifier" => "950d67c4-b856-4174-87fd-645e38fc6428"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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 @1746766263 {
        date: 2025-05-09 04:51:03.767599 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-09 04:51:03] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/masters","identifier":"950d67c4-b856-4174-87fd-645e38fc6428","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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('42GCZQgVUooizv5...', '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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/masters"
        "identifier" => "950d67c4-b856-4174-87fd-645e38fc6428"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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 @1746766263 {
        date: 2025-05-09 04:51:03.767599 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-09 04:51:03] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/masters","identifier":"950d67c4-b856-4174-87fd-645e38fc6428","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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('42GCZQgVUooizv5...', '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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded"
      "context" => array:3 [
        "url" => "https://eclipsesportsevents.com/events/masters"
        "identifier" => "950d67c4-b856-4174-87fd-645e38fc6428"
        "exception" => ErrorException {
          #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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 @1746766263 {
        date: 2025-05-09 04:51:03.767599 UTC (+00:00)
      }
      "extra" => []
      "formatted" => """
        [2025-05-09 04:51:03] production.ERROR: file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded {"url":"https://eclipsesportsevents.com/events/masters","identifier":"950d67c4-b856-4174-87fd-645e38fc6428","exception":"[object] (ErrorException(code: 0): file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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('42GCZQgVUooizv5...', '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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/events/masters"
      "identifier" => "950d67c4-b856-4174-87fd-645e38fc6428"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/events/masters"
      "identifier" => "950d67c4-b856-4174-87fd-645e38fc6428"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded"
    
  3. array:3 [
      "url" => "https://eclipsesportsevents.com/events/masters"
      "identifier" => "950d67c4-b856-4174-87fd-645e38fc6428"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): failed to open stream: Disk quota exceeded"
    
  2. array:3 [
      "url" => "https://eclipsesportsevents.com/events/masters"
      "identifier" => "950d67c4-b856-4174-87fd-645e38fc6428"
      "exception" => ErrorException {
        #message: "file_put_contents(/home/eclipse/pyrocms/storage/framework/sessions/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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/42GCZQgVUooizv5dvkHUMXz8fPIOU4Hutf71Bt5G): 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
empty
empty
Key Value
PATH
"/usr/local/bin:/bin:/usr/bin"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
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
"52.15.143.11"
REMOTE_PORT
"41978"
SERVER_ADDR
"193.35.59.50"
SERVER_NAME
"eclipsesportsevents.com"
SERVER_ADMIN
"webmaster@eclipsesportsevents.com"
SERVER_PORT
"443"
REQUEST_SCHEME
"https"
REQUEST_URI
"/events/masters"
REDIRECT_URL
"/en/events/masters"
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/en/events/masters"
SCRIPT_URL
"/en/events/masters"
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
1746766262.8109
REQUEST_TIME
1746766262
ORIGINAL_REQUEST_URI
"/en/events/masters"
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