Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Artisan error logging verbose level

I have the following error when I try to run the artisan command php artisan route:list:

[Symfony\Component\Debug\Exception\FatalErrorException]  
Call to a member function getAction() on a non-object 

Because I have no idea where this happens, I'm trying to change the artisan verbose level to debug. artisan help tells me this:

--verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug

But I have no idea how to use this. I've tried every combination but nothing seems to work. Can anybody tell me how to use the php artisan route:list command in debug mode?

like image 883
Terrabythia Avatar asked Dec 18 '22 23:12

Terrabythia


1 Answers

php artisan route:list -vvv should work. The syntax is as follows: php artisan route:list [options]

like image 190
Tim Avatar answered Dec 31 '22 17:12

Tim