I'm studying about logs
of cakephp
and in my code I've added the following line for all actions of INSERT
, UPDATE
and DELETE
of my crud
system. p>
Cakelog::write('debug', 'mensagem de exemplo de log!');
And now I want to know how I can see the logs
records that are generated by this CakeLog::write()
method?
Thank you in advance!