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