First of all: CakePHP is a really great framework - for me it is the best one.
I am using the debug function very often, but sometimes loosing overview, which info is related to which line of code (line content - not line number). So, I just added an additional line in the /cake/basic.php - debug function: $calledLine=Debugger::excerpt($calledFrom[0]['file'], $calledFrom[0] ['line'], 0); -- returns an array - which I show next to the line number (a view lines below). Now, better overview about the debugging infos espacially when debugs in if statements or loops. ->hmmm -> I know, I modified the framework - so I will have to do this also in the future for every relaase, but I did not find a way without doing that. Probably it is possible to add this feature in the standard basic.php -with a parameter?!? kind regards Rumkuchen -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
