Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I clean Laravel Telescope debug log

I just installed Laravel Telescope which helps me a lot to debug the application. But at this time I want to delete all telescope data-cache and set as like fresh installation. Or is there any way to export the telescope debug log then work with a fresh one?

Thanks for leaving your words.

like image 493
Nazmus Shakib Avatar asked Jan 23 '19 20:01

Nazmus Shakib


People also ask

How do I get rid of a Telescope?

To permanently remove the telescope, run the composer remove laravel/telescope command, then remove App\Providers\TelescopeServiceProvider::class, from config/app. php file and delete TelescopeServiceProvider file from app/providers/ folder.

Can I use laravel Telescope in production?

Laravel Telescope is an official Laravel package that's meant to help you debug a Laravel app locally. While its main use is for debugging in a local environment, it can also be used in production.

Is laravel Telescope free?

It's free and open source, licensed under the MIT license. You can use Laravel Telescope to debug your requests, exceptions, databases, cache, and much more in real time by accessing a specific route in your local environment.


1 Answers

I use in this case php artisan telescope:clear. For more information you can look in the artisan help function php artisan help telescope:clear.

like image 68
Niko St. Avatar answered Sep 19 '22 21:09

Niko St.