# Errors

# Log errors to sentry.io

To log errors from your Nova installation into senty, you will need to add the code below in the NovaServiceProvider class.

use App\Exceptions\Handler;
use Laravel\Nova\Exceptions\NovaExceptionHandler;

protected function registerExceptionHandler()
{
    $this->app->bind(NovaExceptionHandler::class, Handler::class);
}
1
2
3
4
5
6
7