inspector-apm/inspector-laravel

Does not record exceptions laravel 5.4

Closed this issue · 3 comments

I installed the library in laravel 5.4, when an error occurs does not register in inspector Exceptions

Hi @romaque thank you for your report!

Laravel 5.4 doesn't have "package autodiscovery" feature, so after install the composer package you need to attach the InspectorServiceProvider and facade in your config/app.php

'providers' => [

        /*
         * Laravel Framework Service Providers...
         */
        ...,

        \Inspector\Laravel\InspectorServiceProvider::class,
'aliases' => [
         ...,
        'Inspector' =>  \Inspector\Laravel\Facades\Inspector::class,

I hope this can help you

Hi @ilvalerione thank you so much solved my problem

You're welcome! ;)