Wiki

Articles tagged with "debug", sorted by ratingX
Displaying 1-3 of 3 result(s).

Real Time Logging

Created 2 years ago by lucifuriousTips1 comment – viewed 12,858 times – ( +12 )
I've seen a lot of people asking about the logging facilities in Yii and thought I'd share a nice little class I wrote that provides near real-time logging.

Debugging CActiveRecord failed save() attempts

Created 28 days ago by BoazTips0 comments – viewed 1,301 times – ( +4 )
When you're filling up a form of a CActiveRecord (using CActiveForm for example), usually you'll construct your code so that in case of validation error you'll get back the form with the error displayed back to you, typically when CActiveForm.errorSummary() is used. This is how its done by Gii.

Access log output from unit tests

Created about a year ago by MikeTips2 comments – viewed 3,322 times – ( +2 )
Say, you want to write a test for a component which provides a caching feature. How would you know, that some method of your component returns a cached result? With the solution described here you can inspect all log outputs. So you could search the logs for accesses to the DB to really make sure, that the result was served from cache.