14. LogicException
…/­vendor/­monolog/­monolog/­src/­Monolog/­Handler/­LogglyHandler.php36
13. Monolog\Handler\LogglyHandler __construct
…/­app/­start/­global.php93
12. require
…/­vendor/­laravel/­framework/­src/­Illuminate/­Foundation/­start.php239
11. {closure}
<#unknown>0
10. call_user_func
…/­bootstrap/­compiled.php736
9. Illuminate\Foundation\Application fireAppCallbacks
…/­bootstrap/­compiled.php641
8. Illuminate\Foundation\Application bootApplication
…/­bootstrap/­compiled.php635
7. Illuminate\Foundation\Application boot
…/­bootstrap/­compiled.php695
6. Illuminate\Foundation\Application handle
…/­vendor/­barryvdh/­laravel-debugbar/­src/­Middleware/­Stack.php34
5. Barryvdh\Debugbar\Middleware\Stack handle
…/­bootstrap/­compiled.php7747
4. Illuminate\Session\Middleware handle
…/­bootstrap/­compiled.php8354
3. Illuminate\Cookie\Queue handle
…/­bootstrap/­compiled.php8301
2. Illuminate\Cookie\Guard handle
…/­bootstrap/­compiled.php10963
1. Stack\StackedHttpKernel handle
…/­bootstrap/­compiled.php657
0. Illuminate\Foundation\Application run
…/­public/­index.php49

LogicException LogicException thrown with message "The curl extension is needed to use the LogglyHandler" Stacktrace: #14 LogicException in /var/www/html/obviohealth.net/vendor/monolog/monolog/src/Monolog/Handler/LogglyHandler.php:36 #13 Monolog\Handler\LogglyHandler:__construct in /var/www/html/obviohealth.net/app/start/global.php:93 #12 require in /var/www/html/obviohealth.net/vendor/laravel/framework/src/Illuminate/Foundation/start.php:239 #11 {closure} in <#unknown>:0 #10 call_user_func in /var/www/html/obviohealth.net/bootstrap/compiled.php:736 #9 Illuminate\Foundation\Application:fireAppCallbacks in /var/www/html/obviohealth.net/bootstrap/compiled.php:641 #8 Illuminate\Foundation\Application:bootApplication in /var/www/html/obviohealth.net/bootstrap/compiled.php:635 #7 Illuminate\Foundation\Application:boot in /var/www/html/obviohealth.net/bootstrap/compiled.php:695 #6 Illuminate\Foundation\Application:handle in /var/www/html/obviohealth.net/vendor/barryvdh/laravel-debugbar/src/Middleware/Stack.php:34 #5 Barryvdh\Debugbar\Middleware\Stack:handle in /var/www/html/obviohealth.net/bootstrap/compiled.php:7747 #4 Illuminate\Session\Middleware:handle in /var/www/html/obviohealth.net/bootstrap/compiled.php:8354 #3 Illuminate\Cookie\Queue:handle in /var/www/html/obviohealth.net/bootstrap/compiled.php:8301 #2 Illuminate\Cookie\Guard:handle in /var/www/html/obviohealth.net/bootstrap/compiled.php:10963 #1 Stack\StackedHttpKernel:handle in /var/www/html/obviohealth.net/bootstrap/compiled.php:657 #0 Illuminate\Foundation\Application:run in /var/www/html/obviohealth.net/public/index.php:49

The curl extension is needed to use the LogglyHandler

    protected $token;
 
    protected $tag;
 
    public function __construct($token, $level = Logger::DEBUG, $bubble = true)
    {
        if (!extension_loaded('curl')) {
            throw new \LogicException('The curl extension is needed to use the LogglyHandler');
        }
 
        {
            $user   = \Sentry::findUserById($obj['data']['user_id']);
            $m->to($user->email)->subject('file status');
        });
    }
});
 
$handler = new \Monolog\Handler\LogglyHandler(Config::get('services.loggly.key'),\Monolog\Logger::DEBUG);
$handler->setTag(Config::get('services.loggly.tag'));
 
	| any of the existing IoC bindings, as well as register its own new
	| bindings for things like repositories, etc. We'll load it here.
	|
	*/
 
	$path = $app['path'].'/start/global.php';
 
	if (file_exists($path)) require $path;
 
	/*
<#unknown>
        foreach ($this->finishCallbacks as $callback) {
            call_user_func($callback, $request, $response);
        }
    }
    protected function fireAppCallbacks(array $callbacks)
    {
        foreach ($callbacks as $callback) {
            call_user_func($callback, $this);
        }
    }
        });
        $this->bootApplication();
    }
    protected function bootApplication()
    {
        $this->fireAppCallbacks($this->bootingCallbacks);
        $this->booted = true;
        $this->fireAppCallbacks($this->bootedCallbacks);
    }
    public function booting($callback)
    {
        if ($this->booted) {
            return;
        }
        array_walk($this->serviceProviders, function ($p) {
            $p->boot();
        });
        $this->bootApplication();
    }
    protected function bootApplication()
            return $m['class'] != $class;
        });
    }
    public function handle(SymfonyRequest $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        try {
            $this->refreshRequest($request = Request::createFromBase($request));
            $this->boot();
            return $this->dispatch($request);
        } catch (\Exception $e) {
     */
    public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true)
    {
        /** @var \Barryvdh\Debugbar\LaravelDebugbar $debugbar */
        $debugbar = $this->app['debugbar'];
 
        /** @var \Illuminate\Http\Response $response */
        $response = $this->kernel->handle($request, $type, $catch);
        
        return $debugbar->modifyResponse($request, $response);
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $this->checkRequestForArraySessions($request);
        if ($this->sessionConfigured()) {
            $session = $this->startSession($request);
            $request->setSession($session);
        }
        $response = $this->app->handle($request, $type, $catch);
        if ($this->sessionConfigured()) {
            $this->closeSession($session);
    public function __construct(HttpKernelInterface $app, CookieJar $cookies)
    {
        $this->app = $app;
        $this->cookies = $cookies;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        $response = $this->app->handle($request, $type, $catch);
        foreach ($this->cookies->getQueuedCookies() as $cookie) {
            $response->headers->setCookie($cookie);
    public function __construct(HttpKernelInterface $app, Encrypter $encrypter)
    {
        $this->app = $app;
        $this->encrypter = $encrypter;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->encrypt($this->app->handle($this->decrypt($request), $type, $catch));
    }
    protected function decrypt(Request $request)
    public function __construct(HttpKernelInterface $app, array $middlewares)
    {
        $this->app = $app;
        $this->middlewares = $middlewares;
    }
    public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQUEST, $catch = true)
    {
        return $this->app->handle($request, $type, $catch);
    }
    public function terminate(Request $request, Response $response)
        if ($this->isBooted()) {
            $this->fireAppCallbacks(array($callback));
        }
    }
    public function run(SymfonyRequest $request = null)
    {
        $request = $request ?: $this['request'];
        $response = with($stack = $this->getStackedClient())->handle($request);
        $response->send();
        $stack->terminate($request, $response);
| Once we have the application, we can simply call the run method,
| which will execute the request and send the response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have whipped up for them.
|
*/
 
$app->run();
 
Key Value
GATEWAY_INTERFACE CGI/1.1
REMOTE_ADDR 3.238.195.81
QUERY_STRING
HTTP_USER_AGENT claudebot
DOCUMENT_ROOT /var/www/html/obviohealth.net/public
REMOTE_PORT 42166
HTTP_ACCEPT */*
SERVER_SIGNATURE
REDIRECT_REDIRECT_SSL_TLS_SNI obviohealth.net
REDIRECT_REDIRECT_HTTPS on
CONTEXT_DOCUMENT_ROOT /usr/lib/cgi-bin/php70-cgi
SCRIPT_FILENAME /var/www/html/obviohealth.net/public/index.php
HTTP_HOST obviohealth.net
SSL_TLS_SNI obviohealth.net
REDIRECT_REDIRECT_STATUS 200
REDIRECT_HANDLER application/x-httpd-php70
REQUEST_URI /request
SERVER_SOFTWARE Apache
REQUEST_SCHEME https
REDIRECT_REDIRECT_HTTP_AUTHORIZATION
PHP_FCGI_MAX_REQUESTS 5000
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
REDIRECT_URL /index.php
PHPRC /usr/bin/
REDIRECT_SSL_TLS_SNI obviohealth.net
SERVER_PROTOCOL HTTP/1.1
REDIRECT_HTTPS on
REDIRECT_STATUS 200
REQUEST_METHOD GET
REDIRECT_HTTP_AUTHORIZATION
SERVER_ADDR 10.0.0.4
SERVER_ADMIN webmaster@localhost
CONTEXT_PREFIX /php70-cgi
PWD /usr/lib/cgi-bin
PHP_FCGI_CHILDREN 4
HTTPS on
SERVER_PORT 443
SCRIPT_NAME /index.php
SERVER_NAME obviohealth.net
ORIG_SCRIPT_FILENAME /usr/lib/cgi-bin/php70-cgi
ORIG_PATH_INFO /index.php
ORIG_PATH_TRANSLATED /var/www/html/obviohealth.net/public/index.php
ORIG_SCRIPT_NAME /php70-cgi
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711646950.475645
REQUEST_TIME 1711646950
empty
empty
empty
empty
empty
empty
0. Whoops\Handler\PrettyPageHandler