eonx-com / webhooks

The EoneoPay Webhook
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

CreatedAt null when persisting WebhookResponse #35

Closed natepage closed 4 years ago

natepage commented 5 years ago

Hi there!

In Optusperks project, when sending a webhook we are getting a Doctrine ORM exception because the column created_at on the table event_activity_responses doesn't allow null values but the property on the entity is apparently null at that point.

We are using "eoneopay/webhooks": "^0.10.7", and didn't customise anything.

Here is our doctrine config:

use EoneoPay\Webhooks\Bridge\Doctrine\Entities\Activity;
use EoneoPay\Webhooks\Bridge\Doctrine\Entities\WebhookRequest;
use EoneoPay\Webhooks\Bridge\Doctrine\Entities\WebhookResponse;
use EoneoPay\Webhooks\Model\ActivityInterface;
use EoneoPay\Webhooks\Model\WebhookRequestInterface;
use EoneoPay\Webhooks\Model\WebhookResponseInterface;

'managers' => [
    'default' => [
        // ...
        'namespaces' => [
            'App\Database\Entities',
            'EoneoPay\Webhooks\Bridge\Doctrine\Entities'
        ],
        'paths' => [
            \base_path('app/Database/Entities'),
            \base_path('vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities')
        ],
        // ...
    ],

    // ...

    /*
    |--------------------------------------------------------------------------
    | Doctrine replacements.
    |--------------------------------------------------------------------------
    */
    'replacements' => [
        ActivityInterface::class => Activity::class,
        WebhookRequestInterface::class => WebhookRequest::class,
        WebhookResponseInterface::class => WebhookResponse::class
    ]
]

Let me know if you want to organise a session to dive deep in our implementation to see where we've missed something 😛

edwardmurrell-loyaltycorp commented 5 years ago

@natepage Could you include a backtrace when this problem occurs?

natepage commented 5 years ago

@edwardmurrell-loyaltycorp

{
    "message": "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
    "context": {
        "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
        "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
        "line": 86,
        "trace": [{
            "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
            "line": 172,
            "function": "getResponseId",
            "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
            "type": "->",
            "args": []
        }, {
            "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
            "line": 108,
            "function": "toArray",
            "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
            "type": "->",
            "args": []
        }, {
            "function": "jsonSerialize",
            "class": "EoneoPay\\Externals\\ORM\\Entity",
            "type": "->",
            "args": []
        }, {
            "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
            "line": 212,
            "function": "json_encode",
            "args": [{
                "message": "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "context": {
                    "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 86,
                    "trace": [{
                        "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                        "line": 172,
                        "function": "getResponseId",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                        "line": 108,
                        "function": "toArray",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "function": "jsonSerialize",
                        "class": "EoneoPay\\Externals\\ORM\\Entity",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 212,
                        "function": "json_encode",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 193,
                        "function": "jsonEncode",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                        "line": 77,
                        "function": "toJson",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                        "line": 22,
                        "function": "format",
                        "class": "Monolog\\Formatter\\JsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                        "line": 37,
                        "function": "format",
                        "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 344,
                        "function": "handle",
                        "class": "Monolog\\Handler\\AbstractProcessingHandler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 707,
                        "function": "addRecord",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 120,
                        "function": "error",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 100,
                        "function": "log",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Exceptions/Handler.php",
                        "line": 145,
                        "function": "exception",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 76,
                        "function": "report",
                        "class": "App\\Exceptions\\Handler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 54,
                        "function": "handleException",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                        "line": 39,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 259,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 233,
                        "function": "handleFoundRoute",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 169,
                        "function": "handleDispatcherResponse",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Laravel\\Lumen\\Concerns\\{closure}",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 52,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                        "line": 33,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                        "line": 68,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                        "line": 21,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\ContentLength",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 171,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 108,
                        "function": "dispatch",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/public/index.php",
                        "line": 30,
                        "function": "run",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": []
                    }]
                },
                "level": 400,
                "level_name": "ERROR",
                "channel": "optus",
                "datetime": "2019-10-16T04:06:51+00:00",
                "extra": {
                    "url": "/nba/v1.0/purl/gihahbakds",
                    "ip": "172.21.0.1",
                    "http_method": "GET",
                    "server": "optusperks",
                    "referrer": null,
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "class": "App\\Exceptions\\Handler",
                    "function": "report"
                }
            }, 320]
        }, {
            "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
            "line": 193,
            "function": "jsonEncode",
            "class": "Monolog\\Formatter\\NormalizerFormatter",
            "type": "->",
            "args": [{
                "message": "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "context": {
                    "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 86,
                    "trace": [{
                        "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                        "line": 172,
                        "function": "getResponseId",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                        "line": 108,
                        "function": "toArray",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "function": "jsonSerialize",
                        "class": "EoneoPay\\Externals\\ORM\\Entity",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 212,
                        "function": "json_encode",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 193,
                        "function": "jsonEncode",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                        "line": 77,
                        "function": "toJson",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                        "line": 22,
                        "function": "format",
                        "class": "Monolog\\Formatter\\JsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                        "line": 37,
                        "function": "format",
                        "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 344,
                        "function": "handle",
                        "class": "Monolog\\Handler\\AbstractProcessingHandler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 707,
                        "function": "addRecord",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 120,
                        "function": "error",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 100,
                        "function": "log",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Exceptions/Handler.php",
                        "line": 145,
                        "function": "exception",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 76,
                        "function": "report",
                        "class": "App\\Exceptions\\Handler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 54,
                        "function": "handleException",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                        "line": 39,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 259,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 233,
                        "function": "handleFoundRoute",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 169,
                        "function": "handleDispatcherResponse",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Laravel\\Lumen\\Concerns\\{closure}",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 52,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                        "line": 33,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                        "line": 68,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                        "line": 21,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\ContentLength",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 171,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 108,
                        "function": "dispatch",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/public/index.php",
                        "line": 30,
                        "function": "run",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": []
                    }]
                },
                "level": 400,
                "level_name": "ERROR",
                "channel": "optus",
                "datetime": "2019-10-16T04:06:51+00:00",
                "extra": {
                    "url": "/nba/v1.0/purl/gihahbakds",
                    "ip": "172.21.0.1",
                    "http_method": "GET",
                    "server": "optusperks",
                    "referrer": null,
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "class": "App\\Exceptions\\Handler",
                    "function": "report"
                }
            }]
        }, {
            "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
            "line": 77,
            "function": "toJson",
            "class": "Monolog\\Formatter\\NormalizerFormatter",
            "type": "->",
            "args": [{
                "message": "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "context": {
                    "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 86,
                    "trace": [{
                        "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                        "line": 172,
                        "function": "getResponseId",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                        "line": 108,
                        "function": "toArray",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "function": "jsonSerialize",
                        "class": "EoneoPay\\Externals\\ORM\\Entity",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 212,
                        "function": "json_encode",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 193,
                        "function": "jsonEncode",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                        "line": 77,
                        "function": "toJson",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                        "line": 22,
                        "function": "format",
                        "class": "Monolog\\Formatter\\JsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                        "line": 37,
                        "function": "format",
                        "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 344,
                        "function": "handle",
                        "class": "Monolog\\Handler\\AbstractProcessingHandler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 707,
                        "function": "addRecord",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 120,
                        "function": "error",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 100,
                        "function": "log",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Exceptions/Handler.php",
                        "line": 145,
                        "function": "exception",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 76,
                        "function": "report",
                        "class": "App\\Exceptions\\Handler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 54,
                        "function": "handleException",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                        "line": 39,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 259,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 233,
                        "function": "handleFoundRoute",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 169,
                        "function": "handleDispatcherResponse",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Laravel\\Lumen\\Concerns\\{closure}",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 52,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                        "line": 33,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                        "line": 68,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                        "line": 21,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\ContentLength",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 171,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 108,
                        "function": "dispatch",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/public/index.php",
                        "line": 30,
                        "function": "run",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": []
                    }]
                },
                "level": 400,
                "level_name": "ERROR",
                "channel": "optus",
                "datetime": "2019-10-16T04:06:51+00:00",
                "extra": {
                    "url": "/nba/v1.0/purl/gihahbakds",
                    "ip": "172.21.0.1",
                    "http_method": "GET",
                    "server": "optusperks",
                    "referrer": null,
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "class": "App\\Exceptions\\Handler",
                    "function": "report"
                }
            }, true]
        }, {
            "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
            "line": 22,
            "function": "format",
            "class": "Monolog\\Formatter\\JsonFormatter",
            "type": "->",
            "args": [{
                "message": "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "context": {
                    "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 86,
                    "trace": [{
                        "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                        "line": 172,
                        "function": "getResponseId",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                        "line": 108,
                        "function": "toArray",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "function": "jsonSerialize",
                        "class": "EoneoPay\\Externals\\ORM\\Entity",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 212,
                        "function": "json_encode",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 193,
                        "function": "jsonEncode",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                        "line": 77,
                        "function": "toJson",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                        "line": 22,
                        "function": "format",
                        "class": "Monolog\\Formatter\\JsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                        "line": 37,
                        "function": "format",
                        "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 344,
                        "function": "handle",
                        "class": "Monolog\\Handler\\AbstractProcessingHandler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 707,
                        "function": "addRecord",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 120,
                        "function": "error",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 100,
                        "function": "log",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Exceptions/Handler.php",
                        "line": 145,
                        "function": "exception",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 76,
                        "function": "report",
                        "class": "App\\Exceptions\\Handler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 54,
                        "function": "handleException",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                        "line": 39,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 259,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 233,
                        "function": "handleFoundRoute",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 169,
                        "function": "handleDispatcherResponse",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Laravel\\Lumen\\Concerns\\{closure}",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 52,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                        "line": 33,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                        "line": 68,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                        "line": 21,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\ContentLength",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 171,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 108,
                        "function": "dispatch",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/public/index.php",
                        "line": 30,
                        "function": "run",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": []
                    }]
                },
                "level": 400,
                "level_name": "ERROR",
                "channel": "optus",
                "datetime": "2019-10-16T04:06:51+00:00",
                "extra": {
                    "url": "/nba/v1.0/purl/gihahbakds",
                    "ip": "172.21.0.1",
                    "http_method": "GET",
                    "server": "optusperks",
                    "referrer": null,
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "class": "App\\Exceptions\\Handler",
                    "function": "report"
                }
            }]
        }, {
            "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
            "line": 37,
            "function": "format",
            "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
            "type": "->",
            "args": [{
                "message": "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "context": {
                    "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 86,
                    "trace": [{
                        "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                        "line": 172,
                        "function": "getResponseId",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                        "line": 108,
                        "function": "toArray",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "function": "jsonSerialize",
                        "class": "EoneoPay\\Externals\\ORM\\Entity",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 212,
                        "function": "json_encode",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 193,
                        "function": "jsonEncode",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                        "line": 77,
                        "function": "toJson",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                        "line": 22,
                        "function": "format",
                        "class": "Monolog\\Formatter\\JsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                        "line": 37,
                        "function": "format",
                        "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 344,
                        "function": "handle",
                        "class": "Monolog\\Handler\\AbstractProcessingHandler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 707,
                        "function": "addRecord",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 120,
                        "function": "error",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 100,
                        "function": "log",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Exceptions/Handler.php",
                        "line": 145,
                        "function": "exception",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 76,
                        "function": "report",
                        "class": "App\\Exceptions\\Handler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 54,
                        "function": "handleException",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                        "line": 39,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 259,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 233,
                        "function": "handleFoundRoute",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 169,
                        "function": "handleDispatcherResponse",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Laravel\\Lumen\\Concerns\\{closure}",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 52,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                        "line": 33,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                        "line": 68,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                        "line": 21,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\ContentLength",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 171,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 108,
                        "function": "dispatch",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/public/index.php",
                        "line": 30,
                        "function": "run",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": []
                    }]
                },
                "level": 400,
                "level_name": "ERROR",
                "channel": "optus",
                "datetime": "2019-10-16T04:06:51+00:00",
                "extra": {
                    "url": "/nba/v1.0/purl/gihahbakds",
                    "ip": "172.21.0.1",
                    "http_method": "GET",
                    "server": "optusperks",
                    "referrer": null,
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "class": "App\\Exceptions\\Handler",
                    "function": "report"
                }
            }]
        }, {
            "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
            "line": 344,
            "function": "handle",
            "class": "Monolog\\Handler\\AbstractProcessingHandler",
            "type": "->",
            "args": [{
                "message": "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "context": {
                    "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 86,
                    "trace": [{
                        "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                        "line": 172,
                        "function": "getResponseId",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                        "line": 108,
                        "function": "toArray",
                        "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                        "type": "->",
                        "args": []
                    }, {
                        "function": "jsonSerialize",
                        "class": "EoneoPay\\Externals\\ORM\\Entity",
                        "type": "->",
                        "args": []
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 212,
                        "function": "json_encode",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                        "line": 193,
                        "function": "jsonEncode",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                        "line": 77,
                        "function": "toJson",
                        "class": "Monolog\\Formatter\\NormalizerFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                        "line": 22,
                        "function": "format",
                        "class": "Monolog\\Formatter\\JsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                        "line": 37,
                        "function": "format",
                        "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 344,
                        "function": "handle",
                        "class": "Monolog\\Handler\\AbstractProcessingHandler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                        "line": 707,
                        "function": "addRecord",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 120,
                        "function": "error",
                        "class": "Monolog\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                        "line": 100,
                        "function": "log",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Exceptions/Handler.php",
                        "line": 145,
                        "function": "exception",
                        "class": "App\\External\\Libraries\\Logger\\Logger",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 76,
                        "function": "report",
                        "class": "App\\Exceptions\\Handler",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 54,
                        "function": "handleException",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                        "line": 39,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 259,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 233,
                        "function": "handleFoundRoute",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 169,
                        "function": "handleDispatcherResponse",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Laravel\\Lumen\\Concerns\\{closure}",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 52,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                        "line": 33,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                        "line": 68,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                        "line": 21,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 163,
                        "function": "handle",
                        "class": "App\\Http\\Middlewares\\ContentLength",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "function": "Illuminate\\Pipeline\\{closure}",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                        "line": 32,
                        "function": "call_user_func",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                        "line": 104,
                        "function": "Laravel\\Lumen\\Routing\\{closure}",
                        "class": "Laravel\\Lumen\\Routing\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 413,
                        "function": "then",
                        "class": "Illuminate\\Pipeline\\Pipeline",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 171,
                        "function": "sendThroughPipeline",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                        "line": 108,
                        "function": "dispatch",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": ["Over 9 levels deep, aborting normalization"]
                    }, {
                        "file": "/var/www/public/index.php",
                        "line": 30,
                        "function": "run",
                        "class": "Laravel\\Lumen\\Application",
                        "type": "->",
                        "args": []
                    }]
                },
                "level": 400,
                "level_name": "ERROR",
                "channel": "optus",
                "datetime": {
                    "date": "2019-10-16 04:06:51.412140",
                    "timezone_type": 3,
                    "timezone": "UTC"
                },
                "extra": {
                    "url": "/nba/v1.0/purl/gihahbakds",
                    "ip": "172.21.0.1",
                    "http_method": "GET",
                    "server": "optusperks",
                    "referrer": null,
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "class": "App\\Exceptions\\Handler",
                    "function": "report"
                }
            }]
        }, {
            "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
            "line": 707,
            "function": "addRecord",
            "class": "Monolog\\Logger",
            "type": "->",
            "args": [400, "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned", {
                "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                "line": 86,
                "trace": [{
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 172,
                    "function": "getResponseId",
                    "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                    "type": "->",
                    "args": []
                }, {
                    "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                    "line": 108,
                    "function": "toArray",
                    "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                    "type": "->",
                    "args": []
                }, {
                    "function": "jsonSerialize",
                    "class": "EoneoPay\\Externals\\ORM\\Entity",
                    "type": "->",
                    "args": []
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                    "line": 212,
                    "function": "json_encode",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }, 320]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                    "line": 193,
                    "function": "jsonEncode",
                    "class": "Monolog\\Formatter\\NormalizerFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                    "line": 77,
                    "function": "toJson",
                    "class": "Monolog\\Formatter\\NormalizerFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }, true]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                    "line": 22,
                    "function": "format",
                    "class": "Monolog\\Formatter\\JsonFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                    "line": 37,
                    "function": "format",
                    "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                    "line": 344,
                    "function": "handle",
                    "class": "Monolog\\Handler\\AbstractProcessingHandler",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                    "line": 707,
                    "function": "addRecord",
                    "class": "Monolog\\Logger",
                    "type": "->",
                    "args": [400, "Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                    "line": 120,
                    "function": "error",
                    "class": "Monolog\\Logger",
                    "type": "->",
                    "args": ["Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                    "line": 100,
                    "function": "log",
                    "class": "App\\External\\Libraries\\Logger\\Logger",
                    "type": "->",
                    "args": ["error", "Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "function": "exception",
                    "class": "App\\External\\Libraries\\Logger\\Logger",
                    "type": "->",
                    "args": [{
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }, "error"]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 76,
                    "function": "report",
                    "class": "App\\Exceptions\\Handler",
                    "type": "->",
                    "args": [{
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 54,
                    "function": "handleException",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                    "line": 39,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 104,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 413,
                    "function": "then",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{}]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 259,
                    "function": "sendThroughPipeline",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization"], {}
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 233,
                    "function": "handleFoundRoute",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 169,
                    "function": "handleDispatcherResponse",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    ]
                }, {
                    "function": "Laravel\\Lumen\\Concerns\\{closure}",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 52,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                    "line": 33,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                    "line": 68,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                    "line": 21,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\ContentLength",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 104,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 413,
                    "function": "then",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{}]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 171,
                    "function": "sendThroughPipeline",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"], {}
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 108,
                    "function": "dispatch",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [null]
                }, {
                    "file": "/var/www/public/index.php",
                    "line": 30,
                    "function": "run",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": []
                }]
            }]
        }, {
            "file": "/var/www/app/External/Libraries/Logger/Logger.php",
            "line": 120,
            "function": "error",
            "class": "Monolog\\Logger",
            "type": "->",
            "args": ["Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned", {
                "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                "line": 86,
                "trace": [{
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 172,
                    "function": "getResponseId",
                    "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                    "type": "->",
                    "args": []
                }, {
                    "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                    "line": 108,
                    "function": "toArray",
                    "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                    "type": "->",
                    "args": []
                }, {
                    "function": "jsonSerialize",
                    "class": "EoneoPay\\Externals\\ORM\\Entity",
                    "type": "->",
                    "args": []
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                    "line": 212,
                    "function": "json_encode",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }, 320]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                    "line": 193,
                    "function": "jsonEncode",
                    "class": "Monolog\\Formatter\\NormalizerFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                    "line": 77,
                    "function": "toJson",
                    "class": "Monolog\\Formatter\\NormalizerFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }, true]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                    "line": 22,
                    "function": "format",
                    "class": "Monolog\\Formatter\\JsonFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                    "line": 37,
                    "function": "format",
                    "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                    "line": 344,
                    "function": "handle",
                    "class": "Monolog\\Handler\\AbstractProcessingHandler",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                    "line": 707,
                    "function": "addRecord",
                    "class": "Monolog\\Logger",
                    "type": "->",
                    "args": [400, "Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                    "line": 120,
                    "function": "error",
                    "class": "Monolog\\Logger",
                    "type": "->",
                    "args": ["Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                    "line": 100,
                    "function": "log",
                    "class": "App\\External\\Libraries\\Logger\\Logger",
                    "type": "->",
                    "args": ["error", "Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "function": "exception",
                    "class": "App\\External\\Libraries\\Logger\\Logger",
                    "type": "->",
                    "args": [{
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }, "error"]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 76,
                    "function": "report",
                    "class": "App\\Exceptions\\Handler",
                    "type": "->",
                    "args": [{
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 54,
                    "function": "handleException",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                    "line": 39,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 104,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 413,
                    "function": "then",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{}]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 259,
                    "function": "sendThroughPipeline",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization"], {}
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 233,
                    "function": "handleFoundRoute",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 169,
                    "function": "handleDispatcherResponse",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    ]
                }, {
                    "function": "Laravel\\Lumen\\Concerns\\{closure}",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 52,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                    "line": 33,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                    "line": 68,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                    "line": 21,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\ContentLength",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 104,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 413,
                    "function": "then",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{}]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 171,
                    "function": "sendThroughPipeline",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"], {}
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 108,
                    "function": "dispatch",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [null]
                }, {
                    "file": "/var/www/public/index.php",
                    "line": 30,
                    "function": "run",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": []
                }]
            }]
        }, {
            "file": "/var/www/app/External/Libraries/Logger/Logger.php",
            "line": 100,
            "function": "log",
            "class": "App\\External\\Libraries\\Logger\\Logger",
            "type": "->",
            "args": ["error", "Exception caught: Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned", {
                "exception_class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                "line": 86,
                "trace": [{
                    "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php",
                    "line": 172,
                    "function": "getResponseId",
                    "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                    "type": "->",
                    "args": []
                }, {
                    "file": "/var/www/vendor/eoneopay/externals/src/ORM/Entity.php",
                    "line": 108,
                    "function": "toArray",
                    "class": "EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse",
                    "type": "->",
                    "args": []
                }, {
                    "function": "jsonSerialize",
                    "class": "EoneoPay\\Externals\\ORM\\Entity",
                    "type": "->",
                    "args": []
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                    "line": 212,
                    "function": "json_encode",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }, 320]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/NormalizerFormatter.php",
                    "line": 193,
                    "function": "jsonEncode",
                    "class": "Monolog\\Formatter\\NormalizerFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Formatter/JsonFormatter.php",
                    "line": 77,
                    "function": "toJson",
                    "class": "Monolog\\Formatter\\NormalizerFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }, true]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/SumoJsonFormatter.php",
                    "line": 22,
                    "function": "format",
                    "class": "Monolog\\Formatter\\JsonFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php",
                    "line": 37,
                    "function": "format",
                    "class": "App\\External\\Libraries\\Logger\\SumoJsonFormatter",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                    "line": 344,
                    "function": "handle",
                    "class": "Monolog\\Handler\\AbstractProcessingHandler",
                    "type": "->",
                    "args": [{
                        "message": "Over 9 levels deep, aborting normalization",
                        "context": "Over 9 levels deep, aborting normalization",
                        "level": "Over 9 levels deep, aborting normalization",
                        "level_name": "Over 9 levels deep, aborting normalization",
                        "channel": "Over 9 levels deep, aborting normalization",
                        "datetime": "Over 9 levels deep, aborting normalization",
                        "extra": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/vendor/monolog/monolog/src/Monolog/Logger.php",
                    "line": 707,
                    "function": "addRecord",
                    "class": "Monolog\\Logger",
                    "type": "->",
                    "args": [400, "Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                    "line": 120,
                    "function": "error",
                    "class": "Monolog\\Logger",
                    "type": "->",
                    "args": ["Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/External/Libraries/Logger/Logger.php",
                    "line": 100,
                    "function": "log",
                    "class": "App\\External\\Libraries\\Logger\\Logger",
                    "type": "->",
                    "args": ["error", "Exception caught: An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null", {
                        "exception_class": "Over 9 levels deep, aborting normalization",
                        "file": "Over 9 levels deep, aborting normalization",
                        "line": "Over 9 levels deep, aborting normalization",
                        "trace": "Over 9 levels deep, aborting normalization"
                    }]
                }, {
                    "file": "/var/www/app/Exceptions/Handler.php",
                    "line": 145,
                    "function": "exception",
                    "class": "App\\External\\Libraries\\Logger\\Logger",
                    "type": "->",
                    "args": [{
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }, "error"]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 76,
                    "function": "report",
                    "class": "App\\Exceptions\\Handler",
                    "type": "->",
                    "args": [{
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 54,
                    "function": "handleException",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {
                        "class": "Doctrine\\DBAL\\Exception\\NotNullConstraintViolationException",
                        "message": "An exception occurred while executing 'INSERT INTO event_activity_responses (created_at, error_reason, response, status_code, successful, request_id) VALUES (?, ?, ?, ?, ?, ?)' with params [null, \"cURL error 28: Connection timed out after 2001 milliseconds (see http:\\/\\/curl.haxx.se\\/libcurl\\/c\\/libcurl-errors.html)\", null, null, 0, null]:\n\nSQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                        "code": 0,
                        "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php:103",
                        "previous": {
                            "class": "Doctrine\\DBAL\\Driver\\PDOException",
                            "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                            "code": "23000",
                            "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:119",
                            "previous": {
                                "class": "PDOException",
                                "message": "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'created_at' cannot be null",
                                "code": "23000",
                                "file": "/var/www/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117"
                            }
                        }
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/Exceptions/PegaContextMiddleware.php",
                    "line": 39,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 104,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 413,
                    "function": "then",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{}]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 259,
                    "function": "sendThroughPipeline",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization"], {}
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 233,
                    "function": "handleFoundRoute",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 169,
                    "function": "handleDispatcherResponse",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"]
                    ]
                }, {
                    "function": "Laravel\\Lumen\\Concerns\\{closure}",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 52,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
                    "line": 33,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
                    "line": 68,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/app/Http/Middlewares/ContentLength.php",
                    "line": 21,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 163,
                    "function": "handle",
                    "class": "App\\Http\\Middlewares\\ContentLength",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }, {}]
                }, {
                    "function": "Illuminate\\Pipeline\\{closure}",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
                    "line": 32,
                    "function": "call_user_func",
                    "args": [{}, {
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
                    "line": 104,
                    "function": "Laravel\\Lumen\\Routing\\{closure}",
                    "class": "Laravel\\Lumen\\Routing\\Pipeline",
                    "type": "->",
                    "args": [{
                        "attributes": {},
                        "request": {},
                        "query": {},
                        "server": {},
                        "files": {},
                        "cookies": {},
                        "headers": {}
                    }]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 413,
                    "function": "then",
                    "class": "Illuminate\\Pipeline\\Pipeline",
                    "type": "->",
                    "args": [{}]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 171,
                    "function": "sendThroughPipeline",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [
                        ["Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization", "Over 9 levels deep, aborting normalization"], {}
                    ]
                }, {
                    "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
                    "line": 108,
                    "function": "dispatch",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": [null]
                }, {
                    "file": "/var/www/public/index.php",
                    "line": 30,
                    "function": "run",
                    "class": "Laravel\\Lumen\\Application",
                    "type": "->",
                    "args": []
                }]
            }]
        }, {
            "file": "/var/www/app/Exceptions/Handler.php",
            "line": 145,
            "function": "exception",
            "class": "App\\External\\Libraries\\Logger\\Logger",
            "type": "->",
            "args": [{
                "class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                "message": "Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "code": 0,
                "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php:86"
            }, "error"]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
            "line": 76,
            "function": "report",
            "class": "App\\Exceptions\\Handler",
            "type": "->",
            "args": [{
                "class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                "message": "Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "code": 0,
                "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php:86"
            }]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
            "line": 36,
            "function": "handleException",
            "class": "Laravel\\Lumen\\Routing\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }, {
                "class": "Symfony\\Component\\Debug\\Exception\\FatalThrowableError",
                "message": "Return value of EoneoPay\\Webhooks\\Bridge\\Doctrine\\Entities\\WebhookResponse::getResponseId() must be of the type string, null returned",
                "code": 0,
                "file": "/var/www/vendor/eoneopay/webhooks/src/Bridge/Doctrine/Entities/WebhookResponse.php:86"
            }]
        }, {
            "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
            "line": 104,
            "function": "Laravel\\Lumen\\Routing\\{closure}",
            "class": "Laravel\\Lumen\\Routing\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
            "line": 413,
            "function": "then",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->",
            "args": [{}]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
            "line": 259,
            "function": "sendThroughPipeline",
            "class": "Laravel\\Lumen\\Application",
            "type": "->",
            "args": [
                ["App\\Http\\Middlewares\\Exceptions\\PegaContextMiddleware"], {}
            ]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
            "line": 233,
            "function": "handleFoundRoute",
            "class": "Laravel\\Lumen\\Application",
            "type": "->",
            "args": [
                [1, {
                    "uses": "App\\Http\\Controllers\\V1\\Nba\\PurlsController@showByShortId",
                    "middleware": ["exceptions.pega"]
                }, {
                    "shortId": "gihahbakds"
                }]
            ]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
            "line": 169,
            "function": "handleDispatcherResponse",
            "class": "Laravel\\Lumen\\Application",
            "type": "->",
            "args": [
                [1, {
                    "uses": "App\\Http\\Controllers\\V1\\Nba\\PurlsController@showByShortId",
                    "middleware": ["exceptions.pega"]
                }, {
                    "shortId": "gihahbakds"
                }]
            ]
        }, {
            "function": "Laravel\\Lumen\\Concerns\\{closure}",
            "class": "Laravel\\Lumen\\Application",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
            "line": 52,
            "function": "call_user_func",
            "args": [{}, {
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/app/Http/Middlewares/TrustedProxiesMiddleware.php",
            "line": 33,
            "function": "Laravel\\Lumen\\Routing\\{closure}",
            "class": "Laravel\\Lumen\\Routing\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
            "line": 163,
            "function": "handle",
            "class": "App\\Http\\Middlewares\\TrustedProxiesMiddleware",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }, {}]
        }, {
            "function": "Illuminate\\Pipeline\\{closure}",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
            "line": 32,
            "function": "call_user_func",
            "args": [{}, {
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/eoneopay/apiformats/src/Bridge/Laravel/Middlewares/ApiFormatsMiddleware.php",
            "line": 68,
            "function": "Laravel\\Lumen\\Routing\\{closure}",
            "class": "Laravel\\Lumen\\Routing\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
            "line": 163,
            "function": "handle",
            "class": "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }, {}]
        }, {
            "function": "Illuminate\\Pipeline\\{closure}",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
            "line": 32,
            "function": "call_user_func",
            "args": [{}, {
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/app/Http/Middlewares/ContentLength.php",
            "line": 21,
            "function": "Laravel\\Lumen\\Routing\\{closure}",
            "class": "Laravel\\Lumen\\Routing\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
            "line": 163,
            "function": "handle",
            "class": "App\\Http\\Middlewares\\ContentLength",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }, {}]
        }, {
            "function": "Illuminate\\Pipeline\\{closure}",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Routing/Pipeline.php",
            "line": 32,
            "function": "call_user_func",
            "args": [{}, {
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/illuminate/pipeline/Pipeline.php",
            "line": 104,
            "function": "Laravel\\Lumen\\Routing\\{closure}",
            "class": "Laravel\\Lumen\\Routing\\Pipeline",
            "type": "->",
            "args": [{
                "attributes": {},
                "request": {},
                "query": {},
                "server": {},
                "files": {},
                "cookies": {},
                "headers": {}
            }]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
            "line": 413,
            "function": "then",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->",
            "args": [{}]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
            "line": 171,
            "function": "sendThroughPipeline",
            "class": "Laravel\\Lumen\\Application",
            "type": "->",
            "args": [
                ["App\\Http\\Middlewares\\ContentLength", "EoneoPay\\ApiFormats\\Bridge\\Laravel\\Middlewares\\ApiFormatsMiddleware", "App\\Http\\Middlewares\\TrustedProxiesMiddleware"], {}
            ]
        }, {
            "file": "/var/www/vendor/laravel/lumen-framework/src/Concerns/RoutesRequests.php",
            "line": 108,
            "function": "dispatch",
            "class": "Laravel\\Lumen\\Application",
            "type": "->",
            "args": [null]
        }, {
            "file": "/var/www/public/index.php",
            "line": 30,
            "function": "run",
            "class": "Laravel\\Lumen\\Application",
            "type": "->",
            "args": []
        }]
    },
    "level": 400,
    "level_name": "ERROR",
    "channel": "optus",
    "datetime": "2019-10-16T04:06:51+00:00",
    "extra": {
        "url": "/nba/v1.0/purl/gihahbakds",
        "ip": "172.21.0.1",
        "http_method": "GET",
        "server": "optusperks",
        "referrer": null,
        "file": "/var/www/app/Exceptions/Handler.php",
        "line": 145,
        "class": "App\\Exceptions\\Handler",
        "function": "report"
    }
}
brendonofficial commented 5 years ago

@natepage please check if this is still an issue in version 0.20.2.