I need to log errors, access attempts, etc, to file by creating a plugin or adding in application.ini, in the error staying default to not show to final users

thanks in advance.

link|improve this question

0% accept rate
feedback

1 Answer

This is exactly what Zend_Log was created for.

http://framework.zend.com/manual/en/zend.log.html

$writer = new Zend_Log_Writer_Stream('/path/to/logfile');
$logger = new Zend_Log($writer);

$logger->info('Informational message');
$logger->warn('Warning message');
link|improve this answer
where i can add this code – Zuber Surya Apr 23 at 11:40
@zuberSurya Wherever you want. It's probably best placed in the Bootstrap though (preferably after the autoloader is registered). – adlawson Apr 24 at 0:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.