i using cakephp, unable log info , errors in log files because doesnt work configure::write('debug',0) , cant set 1 or 2 or 3 on production system. tried log4php, not helps me want log different error types in different files. can any1 suggest me other plugin logging cakephp supports.
you can write logs without debug being set 0, write log using:
$this->log("i testing logging without debug being turned on!", 'debug');
you can more information here. http://book.cakephp.org/view/1194/logging#!/view/1195/writing-to-logs
Comments
Post a Comment