How to get the log records of the 'CakeLog :: write ()' method?

0

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!

    
asked by anonymous 21.07.2018 / 05:00

1 answer

0

I've been researching the logs log file in the CakePHP documentation and found a file named debug.log in the directory in ./app/tmp/logs/ where it shows the logs of the actions of my application.

    
21.07.2018 / 21:13