Wiki

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

Real Time Logging

Created 2 years ago by lucifuriousTips1 comment – viewed 12,477 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.

Access log output from unit tests

Created 11 months ago by MikeTips2 comments – viewed 3,057 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.

Debugging CActiveRecord failed save() attempts

Created 3 days ago by BoazTips0 comments – viewed 736 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.