Hacker
Hacker

Reputation: 7906

error logging in zend

i am using zend for 1st time..i am facing problems in finding errors. when a setter and getter function name mismatch i get a an error...but the error is show sometimes and not all the time...how do i log such errors.is there any separate log for this?

Upvotes: 0

Views: 1308

Answers (1)

Hanseh
Hanseh

Reputation: 717

You can create a simple logger and add a logging instance in the setter or getter function. THe attached sample uses firebug for you to immediately see your logs. You may also use file loggers.

$writer = new Zend_Log_Writer_Firebug();

$filter = new Zend_Log_Filter_Priority( Zend_Log::DEBUG );
$writer->addFilter($filter);
$logger = new Zend_Log ( $writer );

Alternatively, you can use the ever so usefil var_dump();exit(); to verify your issue..

Upvotes: 0

Related Questions