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?
|
feedback
|
|
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.
Alternatively, you can use the ever so usefil var_dump();exit(); to verify your issue.. | |||
|
feedback
|